XmlSerializationReader::AddReadCallback Method (String^, String^, Type^, XmlSerializationReadCallback^)
This API supports the product infrastructure and is not intended to be used directly from your code.
Stores an implementation of the XmlSerializationReadCallback delegate and its input data for a later invocation.
Assembly: System.Xml (in System.Xml.dll)
protected: void AddReadCallback( String^ name, String^ ns, Type^ type, XmlSerializationReadCallback^ read )
Parameters
- name
-
Type:
System::String^
The name of the .NET Framework type that is being deserialized.
- ns
-
Type:
System::String^
The namespace of the .NET Framework type that is being deserialized.
- type
-
Type:
System::Type^
The Type to be deserialized.
- read
-
Type:
System.Xml.Serialization::XmlSerializationReadCallback^
An XmlSerializationReadCallback delegate.
The protected members of XmlSerializationReader are intended for use only by derived classes that are used internally within the .NET Framework XML serialization infrastructure.
During initialization, the .NET Framework XML serialization infrastructure dynamically generates and compiles a temporary class for deserialization that derives from XmlSerializationReader. 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. Next, as necessary, a read method is called during deserialization.
You should not directly create an instance of the XmlSerializationReadCallback class.
Available since 1.1