SoapBodyBinding.Parts Propiedad

Definición

Obtiene o establece un valor que indica las partes del mensaje transmitido que aparecen en el cuerpo SOAP de la transmisión.

public:
 property cli::array <System::String ^> ^ Parts { cli::array <System::String ^> ^ get(); void set(cli::array <System::String ^> ^ value); };
public string[] Parts { get; set; }
member this.Parts : string[] with get, set
Public Property Parts As String()

Valor de propiedad

String[]

Matriz de cadenas que contiene los nombres de las partes correspondientes del mensaje.

Ejemplos

SoapBinding^ mySoapBinding = gcnew SoapBinding;
mySoapBinding->Transport = "http://schemas.xmlsoap.org/soap/http";
mySoapBinding->Style = SoapBindingStyle::Document;
// Get the URI for XML namespace of the SoapBinding class.
String^ myNameSpace = SoapBinding::Namespace;
Console::WriteLine( "The URI of the XML Namespace is :{0}", myNameSpace );
SoapBinding mySoapBinding = new SoapBinding();
mySoapBinding.Transport = "http://schemas.xmlsoap.org/soap/http";
mySoapBinding.Style = SoapBindingStyle.Document;
// Get the URI for XML namespace of the SoapBinding class.
String myNameSpace = SoapBinding.Namespace;
Console.WriteLine("The URI of the XML Namespace is :"+myNameSpace);
Dim mySoapBinding As New SoapBinding()
mySoapBinding.Transport = "http://schemas.xmlsoap.org/soap/http"
mySoapBinding.Style = SoapBindingStyle.Document
' Get the URI for XML namespace of the SoapBinding class.
Dim myNameSpace As String = SoapBinding.Namespace
Console.WriteLine("The URI of the XML Namespace is :" + myNameSpace)

Comentarios

Algunas partes del mensaje transmitido pueden aparecer en partes distintas del cuerpo SOAP, como cuando se usa SOAP con .MimeMultipartRelatedBinding En tal caso, los demás miembros de la Extensions propiedad determinan las ubicaciones de las demás partes del mensaje.

Esta propiedad devuelve exactamente la misma información que la PartsString propiedad , pero los resultados se devuelven dentro de una matriz en lugar de dentro de una cadena delimitada por espacio.

Se aplica a