SoapBodyBinding.Parts 속성
정의
중요
일부 정보는 릴리스되기 전에 상당 부분 수정될 수 있는 시험판 제품과 관련이 있습니다. Microsoft는 여기에 제공된 정보에 대해 어떠한 명시적이거나 묵시적인 보증도 하지 않습니다.
전송된 메시지에서 전송의 SOAP 본문 부분에 나타날 메시지 부분을 나타내는 값을 가져오거나 설정합니다.
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()
속성 값
- String[]
해당 메시지 부분의 이름이 들어 있는 문자열 배열입니다.
예제
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)
설명
전송된 된 메시지의 일부를 사용 하 여 SOAP가 사용 하는 경우와 같은 SOAP 본문이 아닌 다른 부분에 나타날 수는 MimeMultipartRelatedBinding합니다. 이러한 경우의 다른 멤버를 Extensions 속성이 메시지의 다른 파트의 위치를 결정 합니다.
정확히 동일한 정보를 반환 하는이 속성은 PartsString 공백으로 구분 된 문자열 내에서 아니라 배열 내의 속성이 아니라 결과 반환 됩니다.