XmlSerializationReader.ReadReferencedElement Method

Definition

Deserializes an object from a SOAP-encoded multiRef element.

Overloads

ReadReferencedElement()

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

Deserializes an object from a SOAP-encoded multiRef XML element.

ReadReferencedElement(String, String)

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

Deserializes an object from a SOAP-encoded multiRef XML element.

Remarks

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

ReadReferencedElement()

Source:
XmlSerializationReader.cs
Source:
XmlSerializationReader.cs
Source:
XmlSerializationReader.cs

Deserializes an object from a SOAP-encoded multiRef XML element.

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

protected:
 System::Object ^ ReadReferencedElement();
protected object? ReadReferencedElement ();
protected object ReadReferencedElement ();
member this.ReadReferencedElement : unit -> obj
Protected Function ReadReferencedElement () As Object

Returns

The value of the referenced element in the document.

Remarks

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

The ReadReferencedElement method obtains the XML Schema data type by reading the xsi:type attribute of the multiRef element. The prefix xsi refers to the instance of the XML Schema namespace.

SOAP encoding allows a unique XML element to appear once within a SOAP message as a multiRef element identified by an id attribute. The id value can be referenced multiple times using href attributes (or ref attributes in SOAP 1.2) in substitute elements.

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

Applies to

ReadReferencedElement(String, String)

Source:
XmlSerializationReader.cs
Source:
XmlSerializationReader.cs
Source:
XmlSerializationReader.cs

Deserializes an object from a SOAP-encoded multiRef XML element.

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

protected:
 System::Object ^ ReadReferencedElement(System::String ^ name, System::String ^ ns);
protected object? ReadReferencedElement (string? name, string? ns);
protected object ReadReferencedElement (string name, string ns);
member this.ReadReferencedElement : string * string -> obj
Protected Function ReadReferencedElement (name As String, ns As String) As Object

Parameters

name
String

The local name of the element's XML Schema data type.

ns
String

The namespace of the element's XML Schema data type.

Returns

The value of the referenced element in the document.

Remarks

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

This signature of the ReadReferencedElement method obtains the XML Schema data type of the multiRef element from the method parameters rather than by reading the xsi:type attribute. The prefix xsi refers to the instance of the XML Schema namespace.

SOAP encoding allows a unique XML element to appear once within a SOAP message as a multiRef element identified by an id attribute. The id value can be referenced multiple times using href attributes (or ref attributes in SOAP 1.2) in substitute elements.

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

Applies to