0

我有一个客户端提供的包含枚举的 wsdl 文件:

<xsd:simpleType name="OurEnum">
<xsd:annotation>
  <xsd:appinfo>
    <i:Base i:namespace="http://x.com/y/structures/2.0" i:name="Object"/>
  </xsd:appinfo>
</xsd:annotation>
<xsd:restriction base="xsd:token">
  <xsd:enumeration value="0"/>
  <xsd:enumeration value="1"/>
  <xsd:enumeration value="2"/>
  <xsd:enumeration value="3"/>
  <xsd:enumeration value="10"/>
</xsd:restriction>

使用 Svcutil 创建 WCF 客户端,枚举的代码如下所示:

/// <remarks/>
[System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.0.30319.233")]
[System.SerializableAttribute()]
[System.Xml.Serialization.XmlTypeAttribute(Namespace = "http://x.com/y/z/2.0")]
public enum OurEnum
{

    /// <remarks/>
    [System.Xml.Serialization.XmlEnumAttribute("0")]
    Item0,

    /// <remarks/>
    [System.Xml.Serialization.XmlEnumAttribute("1")]
    Item1,

    /// <remarks/>
    [System.Xml.Serialization.XmlEnumAttribute("10")]
    Item10,

    /// <remarks/>
    [System.Xml.Serialization.XmlEnumAttribute("2")]
    Item2,

    /// <remarks/>
    [System.Xml.Serialization.XmlEnumAttribute("3")]
    Item3,

 }

将枚举值创建为 Item0、Item1、Item10 非常烦人。应该如何使用 Svcutil 以便生成的代码如下所示:

/// <remarks/>
[System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.0.30319.233")]
[System.SerializableAttribute()]
[System.Xml.Serialization.XmlTypeAttribute(Namespace = "http://x.com/y/z/2.0")]
public enum OurEnum
{

    /// <remarks/>
    [System.Xml.Serialization.XmlEnumAttribute("0")]
    0,

    /// <remarks/>
    [System.Xml.Serialization.XmlEnumAttribute("1")]
    1,

    /// <remarks/>
    [System.Xml.Serialization.XmlEnumAttribute("10")]
    10,

    /// <remarks/>
    [System.Xml.Serialization.XmlEnumAttribute("2")]
    2,

    /// <remarks/>
    [System.Xml.Serialization.XmlEnumAttribute("3")]
    3,
 }

我已经尝试对 Svcutil 使用以下序列化选项:

"/serializer:Auto" "/serializer:DataContractSerializer (失败严重)" "/serializer:XmlSerializer" "/importXmlTypes"

但结果保持不变。

我还尝试使用 Xsd.exe 从 wsdl 中引用的 xsd 创建 c-sharp 代码文件,但结果仍然相同。

有没有其他免费工具可以做到预期?

非常感谢任何见解!

4

1 回答 1

1

我已经解决了我的问题。这个想法是从这里获得的,并表示应有的感谢和问候。

实际的问题是当给定值为 10 时如何获取 Item10。从上面链接中引用的解决方案中得到启发,我想出了以下方法,当传递 XmlEnumAttribute 中包含的值时,将返回枚举值:

private static T GetEnumValueFromXmlAttrName<T>(string attribVal)
    {
        T val = default(T);

        if (typeof(T).BaseType.FullName.Equals("System.Enum"))
        {
            FieldInfo[] fields = typeof(T).GetFields();

            foreach (FieldInfo field in fields)
            {
                object[] attribs = field.GetCustomAttributes(typeof(XmlEnumAttribute), false);

                foreach (object attr in attribs)
                {
                    if ((attr as XmlEnumAttribute).Name.Equals(attribVal))
                    {
                        val = (T)field.GetValue(null);
                        return val;
                    }
                }
            }
        }
        else
            throw new Exception("The supplied type is not an Enum.");

        return val;
    }

希望这可以帮助!

于 2012-05-23T21:44:52.217 回答