I want a method to return an XML Serialized Typed object. Is there an interface I can use to enforce this requirement?
|
|
|||||
|
|
|
IXmlSerializable will allow you to customize XML serialization/deserialization. However, it still uses XmlSerializer to serialize data to or from XML. |
||
|
|
|
|
There is no interface that means "this object can be XML Serialized". The following type is XML Serializable, but does not implement
There is no interface that could be used as a return type which could both return an |
||
|
|
|
|
is this what you mean? http://msdn.microsoft.com/en-us/library/system.runtime.serialization.iserializable.aspx |
||
|
|
|
Implement ISerializable |
||
|
|
