I would like to create a class that is used for serialization and deserialization. When serializing the attribute name should be "MyNameRequestType" and "MyNameResponseType" when deserializing.
The question is how should i create or override the XmlRootAttribute?
Eg.
[System.SerializableAttribute()]
[System.Xml.Serialization.XmlRootAttribute("MyNameRequestType", IsNullable = false)]
public class MyClass
{
public string MyProperty { get; set; }
}