XmlSerializationWriter.WriteReferencingElement Método

Definição

Grava um elemento XML de mensagem SOAP que contém uma referência a um elemento multiRef para determinado objeto.Writes a SOAP message XML element that contains a reference to a multiRef element for a given object.

Sobrecargas

WriteReferencingElement(String, String, Object)

Esta API dá suporte à infraestrutura do produto e não deve ser usada diretamente do seu código.

Grava um elemento XML de mensagem SOAP que contém uma referência a um elemento multiRef para determinado objeto.Writes a SOAP message XML element that contains a reference to a multiRef element for a given object.

WriteReferencingElement(String, String, Object, Boolean)

Esta API dá suporte à infraestrutura do produto e não deve ser usada diretamente do seu código.

Grava um elemento XML de mensagem SOAP que contém uma referência a um elemento multiRef para determinado objeto.Writes a SOAP message XML element that contains a reference to a multiRef element for a given object.

WriteReferencingElement(String, String, Object)

Grava um elemento XML de mensagem SOAP que contém uma referência a um elemento multiRef para determinado objeto.Writes a SOAP message XML element that contains a reference to a multiRef element for a given object.

Esta API dá suporte à infraestrutura do produto e não deve ser usada diretamente do seu código.

protected:
 void WriteReferencingElement(System::String ^ n, System::String ^ ns, System::Object ^ o);
protected void WriteReferencingElement (string n, string? ns, object? o);
protected void WriteReferencingElement (string n, string ns, object o);
member this.WriteReferencingElement : string * string * obj -> unit
Protected Sub WriteReferencingElement (n As String, ns As String, o As Object)

Parâmetros

n
String

O nome local do elemento de referência que está sendo gravado.The local name of the referencing element being written.

ns
String

O namespace do elemento de referência que está sendo gravado.The namespace of the referencing element being written.

o
Object

O objeto que está sendo serializado.The object being serialized.

Comentários

Os membros protegidos do XmlSerializationWriter são destinados para uso somente por classes derivadas que são usadas internamente dentro da infraestrutura de serialização de .NET Framework XML.The protected members of XmlSerializationWriter are intended for use only by derived classes that are used internally within the .NET Framework XML serialization infrastructure.

A codificação SOAP permite que um elemento XML exclusivo apareça uma vez em uma mensagem SOAP como um multiRef elemento identificado por um id atributo.SOAP encoding allows a unique XML element to appear once within a SOAP message as a multiRef element identified by an id attribute. O id valor pode ser referenciado várias vezes usando href atributos (ou ref atributos em SOAP 1,2) em elementos substitutos.The id value can be referenced multiple times using href attributes (or ref attributes in SOAP 1.2) in substitute elements.

A codificação SOAP é descrita na seção 5 da especificação SOAP 1,1.SOAP encoding is described in Section 5 of the SOAP 1.1 specification.

Aplica-se a

WriteReferencingElement(String, String, Object, Boolean)

Grava um elemento XML de mensagem SOAP que contém uma referência a um elemento multiRef para determinado objeto.Writes a SOAP message XML element that contains a reference to a multiRef element for a given object.

Esta API dá suporte à infraestrutura do produto e não deve ser usada diretamente do seu código.

protected:
 void WriteReferencingElement(System::String ^ n, System::String ^ ns, System::Object ^ o, bool isNullable);
protected void WriteReferencingElement (string n, string? ns, object? o, bool isNullable);
protected void WriteReferencingElement (string n, string ns, object o, bool isNullable);
member this.WriteReferencingElement : string * string * obj * bool -> unit
Protected Sub WriteReferencingElement (n As String, ns As String, o As Object, isNullable As Boolean)

Parâmetros

n
String

O nome local do elemento de referência que está sendo gravado.The local name of the referencing element being written.

ns
String

O namespace do elemento de referência que está sendo gravado.The namespace of the referencing element being written.

o
Object

O objeto que está sendo serializado.The object being serialized.

isNullable
Boolean

true para gravar um atributo xsi:nil='true' se o objeto a ser serializado for null; caso contrário, false.true to write an xsi:nil='true' attribute if the object to serialize is null; otherwise, false.

Comentários

Os membros protegidos do XmlSerializationWriter são destinados para uso somente por classes derivadas que são usadas internamente dentro da infraestrutura de serialização de .NET Framework XML.The protected members of XmlSerializationWriter are intended for use only by derived classes that are used internally within the .NET Framework XML serialization infrastructure.

A codificação SOAP permite que um elemento XML exclusivo apareça uma vez em uma mensagem SOAP como um multiRef elemento identificado por um id atributo.SOAP encoding allows a unique XML element to appear once within a SOAP message as a multiRef element identified by an id attribute. O id valor pode ser referenciado várias vezes usando href atributos (ou ref atributos em SOAP 1,2) em elementos substitutos.The id value can be referenced multiple times using href attributes (or ref attributes in SOAP 1.2) in substitute elements.

A codificação SOAP é descrita na seção 5 da especificação SOAP 1,1.SOAP encoding is described in Section 5 of the SOAP 1.1 specification.

Aplica-se a