2011-05-27 55 views
0

我想創建一個用於序列化和反序列化的類。在反序列化時,序列化屬性名稱時應該是「MyNameRequestType」和「MyNameResponseType」。用於序列化和反序列化的類XmlRootAttribute

問題是我該如何創建或重寫XmlRootAttribute?

例如,

[System.SerializableAttribute()] 
[System.Xml.Serialization.XmlRootAttribute("MyNameRequestType", IsNullable = false)] 
public class MyClass 
{ 
    public string MyProperty { get; set; } 
} 

回答