XmlSerializationReader.ReadReferencedElement Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Deserializes an object from a SOAP-encoded multiRef element.
Overloads
| 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 |
| 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 |
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(String, String)
- Source:
- XmlSerializationReader.cs
- 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);
[System.Diagnostics.CodeAnalysis.RequiresDynamicCode("XML serializer relies on dynamic code generation which is not available with Ahead of Time compilation")]
[System.Diagnostics.CodeAnalysis.RequiresUnreferencedCode("Members from serialized types may be trimmed if not referenced directly")]
protected object? ReadReferencedElement(string? name, string? ns);
protected object? ReadReferencedElement(string? name, string? ns);
[System.Diagnostics.CodeAnalysis.RequiresUnreferencedCode("Members from serialized types may be trimmed if not referenced directly")]
protected object? ReadReferencedElement(string? name, string? ns);
protected object ReadReferencedElement(string name, string ns);
[<System.Diagnostics.CodeAnalysis.RequiresDynamicCode("XML serializer relies on dynamic code generation which is not available with Ahead of Time compilation")>]
[<System.Diagnostics.CodeAnalysis.RequiresUnreferencedCode("Members from serialized types may be trimmed if not referenced directly")>]
member this.ReadReferencedElement : string * string -> obj
member this.ReadReferencedElement : string * string -> obj
[<System.Diagnostics.CodeAnalysis.RequiresUnreferencedCode("Members from serialized types may be trimmed if not referenced directly")>]
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.
- Attributes
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
ReadReferencedElement()
- Source:
- XmlSerializationReader.cs
- 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.Diagnostics.CodeAnalysis.RequiresDynamicCode("XML serializer relies on dynamic code generation which is not available with Ahead of Time compilation")]
[System.Diagnostics.CodeAnalysis.RequiresUnreferencedCode("Members from serialized types may be trimmed if not referenced directly")]
protected object? ReadReferencedElement();
protected object? ReadReferencedElement();
[System.Diagnostics.CodeAnalysis.RequiresUnreferencedCode("Members from serialized types may be trimmed if not referenced directly")]
protected object? ReadReferencedElement();
protected object ReadReferencedElement();
[<System.Diagnostics.CodeAnalysis.RequiresDynamicCode("XML serializer relies on dynamic code generation which is not available with Ahead of Time compilation")>]
[<System.Diagnostics.CodeAnalysis.RequiresUnreferencedCode("Members from serialized types may be trimmed if not referenced directly")>]
member this.ReadReferencedElement : unit -> obj
member this.ReadReferencedElement : unit -> obj
[<System.Diagnostics.CodeAnalysis.RequiresUnreferencedCode("Members from serialized types may be trimmed if not referenced directly")>]
member this.ReadReferencedElement : unit -> obj
Protected Function ReadReferencedElement () As Object
Returns
The value of the referenced element in the document.
- Attributes
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.