XmlSerializationWriteCallback Delegate

Microsoft Silverlight will reach end of support after October 2021. Learn more.

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)

Syntax

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

Parameters

Remarks

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.

Version Information

Silverlight

Supported in: 5, 4, 3

Platforms

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