Windows apps
Collapse the table of content
Expand the table of content
Information
The topic you requested is included in another documentation set. For convenience, it's displayed below. Choose Switch to see the topic in its original location.

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.

Namespace:   System.Runtime.Serialization
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.

No code example is currently available or this language may not be supported.

.NET Framework
Available since 3.0
Return to top
Show:
© 2017 Microsoft