XmlSerializationReader.CollectionFixup Class

Definition

Holds an XmlSerializationCollectionFixupCallback delegate instance, plus the method's inputs; also supplies the method's parameters.

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

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 infrastructure generates methods that implement the XmlSerializationCollectionFixupCallback delegate. Additionally, it instantiates XmlSerializationReader.CollectionFixup class objects to store the fix-up methods along with their inputs. The infrastructure does so for SOAP-encoded arrays or SOAP-encoded, multireferenced elements whose data types, in either case, map to .NET Framework collections or enumerations. Then, as necessary, the methods are invoked during deserialization to fill in array items or multireferenced objects.

Do not directly instantiate XmlSerializationCollectionFixupCallback or XmlSerializationReader.CollectionFixup.

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

Constructors

XmlSerializationReader.CollectionFixup(Object, XmlSerializationCollectionFixupCallback, Object)

Initializes a new instance of the XmlSerializationReader.CollectionFixup class with parameters for a callback method.

Properties

Callback

Gets the callback method that instantiates the XmlSerializationCollectionFixupCallback delegate.

Collection

Gets the object collection for the callback method.

CollectionItems

Gets the array into which the callback method copies a collection.

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