Freigeben über


SoapBodyBinding.PartsString Eigenschaft

Definition

Ruft einen Wert ab, der angibt, welche Teile der übertragenen Meldung sich im SOAP-Body-Teil der Übertragung befinden, oder legt diesen fest.

public:
 property System::String ^ PartsString { System::String ^ get(); void set(System::String ^ value); };
public string PartsString { get; set; }
member this.PartsString : string with get, set
Public Property PartsString As String

Eigenschaftswert

String

Eine durch Leerzeichen getrennte Zeichenfolge, die die entsprechenden Meldungsteile enthält.

Beispiele

// Create the 'InputBinding' object for the 'SOAP' protocol.
InputBinding^ myInput = gcnew InputBinding;
SoapBodyBinding^ mySoapBinding1 = gcnew SoapBodyBinding;
mySoapBinding1->PartsString = "parameters";
mySoapBinding1->Use = SoapBindingUse::Literal;
myInput->Extensions->Add( mySoapBinding1 );

// Assign the 'InputBinding' to 'OperationBinding'.
myOperationBinding->Input = myInput;

// Create the 'OutputBinding' object' for the 'SOAP' protocol..
OutputBinding^ myOutput = gcnew OutputBinding;
myOutput->Extensions->Add( mySoapBinding1 );

// Assign the 'OutPutBinding' to 'OperationBinding'.
myOperationBinding->Output = myOutput;
// Create the 'InputBinding' object for the 'SOAP' protocol.
InputBinding myInput = new InputBinding();
SoapBodyBinding mySoapBinding1 = new SoapBodyBinding();
mySoapBinding1.PartsString = "parameters";
mySoapBinding1.Use= SoapBindingUse.Literal;
myInput.Extensions.Add(mySoapBinding1);
// Assign the 'InputBinding' to 'OperationBinding'.
myOperationBinding.Input = myInput;
// Create the 'OutputBinding' object' for the 'SOAP' protocol..
OutputBinding myOutput = new OutputBinding();
myOutput.Extensions.Add(mySoapBinding1);
 // Assign the 'OutPutBinding' to 'OperationBinding'.
myOperationBinding.Output = myOutput;
' Create the 'InputBinding' object for the 'SOAP' protocol.
Dim myInput As New InputBinding()
Dim mySoapBinding1 As New SoapBodyBinding()
mySoapBinding1.PartsString = "parameters"
mySoapBinding1.Use = SoapBindingUse.Literal
myInput.Extensions.Add(mySoapBinding1)
' Assign the 'InputBinding' to 'OperationBinding'.
myOperationBinding.Input = myInput
' Create the 'OutputBinding' object' for the 'SOAP' protocol..
Dim myOutput As New OutputBinding()
myOutput.Extensions.Add(mySoapBinding1)
' Assign the 'OutPutBinding' to 'OperationBinding'.
myOperationBinding.Output = myOutput

Hinweise

Einige Teile der übertragenen Nachricht können in Anderen Teilen als dem SOAP-Textkörper angezeigt werden, z. B. wenn SOAP mit einer MimeMultipartRelatedBinding. In diesem Fall bestimmen die anderen Mitglieder der Extensions Eigenschaft die Speicherorte anderer Teile der Nachricht.

Diese Eigenschaft gibt genau die gleichen Informationen wie die Parts Eigenschaft zurück, aber die Ergebnisse werden innerhalb einer Leerzeichentrennzeichenfolge und nicht innerhalb eines Arrays zurückgegeben. PartsString wird intern für die XML-Serialisierung verwendet und sollte nicht direkt aufgerufen werden. Um die übertragenen Nachrichtenteile zurückzugeben, die im SOAP-Textteil der Übertragung angezeigt werden, verwenden Sie die Parts Eigenschaft.

Gilt für