NetDataContractSerializer Constructor (XmlDictionaryString^, XmlDictionaryString^)
Initializes a new instance of the NetDataContractSerializer class with two parameters of type XmlDictionaryString that contain the root element and namespace used to specify the content.
Assembly: System.Runtime.Serialization (in System.Runtime.Serialization.dll)
public:
NetDataContractSerializer(
XmlDictionaryString^ rootName,
XmlDictionaryString^ rootNamespace
)
Parameters
- rootName
-
Type:
System.Xml::XmlDictionaryString^
An XmlDictionaryString that contains the name of the XML element that encloses the content to serialize or deserialize.
- rootNamespace
-
Type:
System.Xml::XmlDictionaryString^
An XmlDictionaryString that contains the namespace of the XML element that encloses the content to serialize or deserialize.
The XmlDictionaryString can be used to optimize performance when the same set of strings is used across object instances.
The following example creates an instance of the DataContractSerializer specifying the XML root element and namespace (as XmlDictionaryString arguments) it will expect when deserializing an object.
Available since 3.0