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.

XmlSerializationWriteCallback Delegate

Delegate supporting the .NET Framework infrastructure that is used by the XmlSerializer class for serialization of types from SOAP-encoded, non-root XML data.

Namespace:  System.Xml.Serialization
Assembly:  System.Xml.Serialization (in System.Xml.Serialization.dll)

'Declaration
Public Delegate Sub XmlSerializationWriteCallback ( _
	o As Object _
)

Parameters

o
Type: System.Object
The object being serialized.

During initialization, the .NET Framework XML serialization infrastructure dynamically generates and compiles a temporary class for serialization derived from the XmlSerializationWriter class. During this process, the .NET Framework generates write methods that implement the XmlSerializationWriteCallback class delegate. It does so for certain mappings between .NET Framework types and XML data types that are serialized through SOAP-encoded XML and are not root elements. Then, as necessary, a write method is called during serialization.

You should not directly instantiate XmlSerializationWriteCallback.

SOAP encoding is described in Section 5 of the SOAP 1.1 specification.

Silverlight

Supported in: 5, 4, 3

For a list of the operating systems and browsers that are supported by Silverlight, see Supported Operating Systems and Browsers.

Community Additions

Show:
© 2017 Microsoft