XmlSerializationReadCallback Delegate
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Delegate used by the XmlSerializer class for deserialization of types from SOAP-encoded, non-root XML data.
This API supports the product infrastructure and is not intended to be used directly from your code.
public delegate System::Object ^ XmlSerializationReadCallback();
public delegate object? XmlSerializationReadCallback();
public delegate object XmlSerializationReadCallback();
type XmlSerializationReadCallback = delegate of unit -> obj
Public Delegate Function XmlSerializationReadCallback() As Object
Return Value
The object returned by the callback.
Remarks
During initialization, the .NET Framework XML serialization infrastructure dynamically generates and compiles a temporary class for deserialization derived from the XmlSerializationReader class. During this process, the .NET Framework generates read methods that implement the XmlSerializationReadCallback 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 read method is called during deserialization.
Do not directly create instances of the XmlSerializationReadCallback class.
SOAP encoding is described in Section 5 of the SOAP 1.1 specification.
Extension Methods
GetMethodInfo(Delegate) |
Gets an object that represents the method represented by the specified delegate. |