c# - 使用可以是不同枚举类型的通用枚举来序列化类

标签 c# serialization enums

我正在尝试设计一个应用程序,允许用户在 XML 中指定枚举类型,然后应用程序将执行与该枚举相关的特定方法(使用字典)。我对 XML 的 Enum 部分很感兴趣。

public class TESTCLASS
{
    private Enum _MethodType;

    [XmlElement(Order = 1, ElementName = "MethodType")]
    public Enum MethodType
    {
        get { return _MethodType; }
        set { _MethodType = value; } 
    }
    public TESTCLASS() { }

    public TESTCLASS(Enummies.BigMethods bigM)
    {
        MethodType = bigM;
    }
    public TESTCLASS(Enummies.SmallMethods smallM)
    {
        MethodType = smallM;
    }
}

public class Enummies
{
    public enum BigMethods { BIG_ONE, BIG_TWO, BIG_THREE }
    public enum SmallMethods { SMALL_ONE, SMALL_TWO, SMALL_THREE }
}

然后尝试序列化 TESTCLASS 会导致异常:

string p = "C:\\testclass.xml";
TESTCLASS testclass = new TESTCLASS(Enummies.BigMethods.BIG_ONE);
TestSerializer<TESTCLASS>.Serialize(p, testclass);

System.InvalidOperationException: The type Enummies+BigMethods may not be used in this context.

我的序列化方法如下所示:

public class TestSerializer<T> where T: class
{
    public static void Serialize(string path, T type)
    {
        var serializer = new XmlSerializer(type.GetType());
        using (var writer = new FileStream(path, FileMode.Create))
        {
            serializer.Serialize(writer, type);
        }
    }

    public static T Deserialize(string path)
    {
        T type;
        var serializer = new XmlSerializer(typeof(T));
        using (var reader = XmlReader.Create(path))
        {
            type = serializer.Deserialize(reader) as T;
        }
        return type;
    }
}

我尝试在 MethodType Getter 中包含一些检查/转换,但这会导致相同的错误。

    public Enum MethodType
    {
        get 
        { 
            if (_MethodType is Enummies.BigMethods) return (Enummies.BigMethods)_MethodType; 
            if (_MethodType is Enummies.SmallMethods) return (Enummies.SmallMethods)_MethodType;
            throw new Exception("UNKNOWN ENUMMIES TYPE");
        }
        set { _MethodType = value; } 
    }

最佳答案

当我尝试使用 XmlSerializer 序列化您的类时,我得到的最内部异常是:

Message="System.Enum is an unsupported type. Please use [XmlIgnore] attribute to exclude members of this type from serialization graph."

这是不言自明的:您不能序列化类型为抽象类型的成员 System.Enum .

但是,您可以序列化 System.Object 类型的成员前提是可能遇到的所有可能的值类型均使用 [XmlInclude(typeof(T))] 静态声明。 .因此您可以按如下方式修改您的类型:

// Include all possible types of Enum that might be serialized
[XmlInclude(typeof(Enummies.BigMethods))]
[XmlInclude(typeof(Enummies.SmallMethods))]
public class TESTCLASS
{
    private Enum _MethodType;

    // Surrogate object property for MethodObject required by XmlSerializer
    [XmlElement(Order = 1, ElementName = "MethodType")]
    [Browsable(false), EditorBrowsable(EditorBrowsableState.Never), DebuggerBrowsable(DebuggerBrowsableState.Never)]
    public object MethodTypeObject
    {
        get { return MethodType; }
        set { MethodType = (Enum)value; }
    }

    // Ignore the Enum member that cannot be serialized directly
    [XmlIgnore]
    public Enum MethodType
    {
        get { return _MethodType; }
        set { _MethodType = value; }
    }
    public TESTCLASS() { }

    public TESTCLASS(Enummies.BigMethods bigM)
    {
        MethodType = bigM;
    }
    public TESTCLASS(Enummies.SmallMethods smallM)
    {
        MethodType = smallM;
    }
}

生成的XML如下:

<TESTCLASS xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
  <MethodType xsi:type="BigMethods">BIG_THREE</MethodType>
</TESTCLASS>

或者

<?xml version="1.0" encoding="utf-16"?>
<TESTCLASS xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
  <MethodType xsi:type="SmallMethods">SMALL_TWO</MethodType>
</TESTCLASS>

注意到xsi:type 属性了吗?那是一个W3C standard attribute元素可以用来显式断言其类型。 Microsoft 使用此属性来表示多态元素的类型信息,如所述 here .

样本fiddle .

您可能需要检查 MethodObject 的 setter(而不是 getter)中的值类型是否为已知的 Enum 类型,但这对于 XML 序列化不是必需的。

关于c# - 使用可以是不同枚举类型的通用枚举来序列化类,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/43955541/

相关文章:

c# - MVC 核心、Web 套接字和线程

java - lambda 表达式的序列化有哪些安全风险?

c++ - 如何使用 boost XML 存档序列化 OpenCV Mat

ios - 在 Swift 中将字段添加到枚举

java - 为什么 EnumSet 或 EnumMap 可能比它们的散列对应物更高效?

时间:2019-03-17 标签:c#DataGridViewEditMode和DeleteKey

c# - 在 Visual Studio 2017 的 IServiceCollection 中找不到 AddMvc()

c# - .NET HttpClient GET 请求在空闲约 100 秒后非常慢

php - 在 WooCommerce 3 中获取产品属性详细信息

swift - swift 中的转换运算符