XmlSerializationReader.FixupArrayRefs(Object) Method

Definition

Fills in the values of a SOAP-encoded array whose data type maps to a .NET reference type.

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

protected:
 void FixupArrayRefs(System::Object ^ fixup);
protected void FixupArrayRefs (object fixup);
member this.FixupArrayRefs : obj -> unit
Protected Sub FixupArrayRefs (fixup As Object)

Parameters

fixup
Object

An object that contains the array whose values are filled in.

Remarks

The protected members of XmlSerializationReader are intended for use only by derived classes that are used internally within the .NET XML serialization infrastructure.

The FixupArrayRefs method implements the XmlSerializationFixupCallback delegate for deserialization of SOAP-encoded XML data.

While deserializing XML documents into .NET objects, the .NET XML serialization infrastructure dynamically creates an instance of the FixupArrayRefs method for SOAP-encoded arrays whose data types map to .NET reference types. The method then is called by XmlSerializationFixupCallback to fill in the objects in the array.

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

Applies to