XmlSerializationReader.Fixup Class

Definition

Holds an XmlSerializationFixupCallback delegate instance, plus the method's inputs; also serves as the parameter for the method.

This API supports the product infrastructure and is not intended to be used directly from your code.

protected: ref class XmlSerializationReader::Fixup
protected class XmlSerializationReader.Fixup
Protected Class XmlSerializationReader.Fixup
Inheritance
XmlSerializationReader.Fixup

Remarks

While deserializing XML documents into .NET Framework objects, the .NET Framework XML serialization infrastructure dynamically instantiates fix-up methods that implement the XmlSerializationFixupCallback delegate; plus, it instantiates XmlSerializationReader.Fixup class objects to store the fix-up methods along with their inputs. The infrastructure does so for SOAP-encoded arrays whose data types map to .NET Framework reference types. Then, as necessary, a fix-up method is called to fill in the objects in the array.

In addition, 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 infrastructure generates XmlSerializationFixupCallback properties plus XmlSerializationReader.Fixup class objects for SOAP-encoded, multireferenced XML data. The methods are then invoked during deserialization.

Do not directly create an instance of the XmlSerializationFixupCallback or XmlSerializationReader.Fixup class.

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

Constructors

XmlSerializationReader.Fixup(Object, XmlSerializationFixupCallback, Int32)

This API supports the product infrastructure and is not intended to be used directly from your code.

Initializes a new instance of the XmlSerializationReader.Fixup class.

XmlSerializationReader.Fixup(Object, XmlSerializationFixupCallback, String[])

This API supports the product infrastructure and is not intended to be used directly from your code.

Initializes a new instance of the XmlSerializationReader.Fixup class.

Properties

Callback

This API supports the product infrastructure and is not intended to be used directly from your code.

Gets the callback method that creates an instance of the XmlSerializationFixupCallback delegate.

Ids

This API supports the product infrastructure and is not intended to be used directly from your code.

Gets or sets an array of keys for the objects that belong to the Source property whose values get filled in by the callback implementation.

Source

This API supports the product infrastructure and is not intended to be used directly from your code.

Gets or sets the object that contains other objects whose values get filled in by the callback implementation.

Methods

Equals(Object)

Determines whether the specified object is equal to the current object.

(Inherited from Object)
GetHashCode()

Serves as the default hash function.

(Inherited from Object)
GetType()

Gets the Type of the current instance.

(Inherited from Object)
MemberwiseClone()

Creates a shallow copy of the current Object.

(Inherited from Object)
ToString()

Returns a string that represents the current object.

(Inherited from Object)

Applies to

See also