다음을 통해 공유


ServiceDescriptionImporter.ProtocolName 속성

정의

설명된 XML Web services에 액세스하는 데 사용되는 프로토콜을 가져오거나 설정합니다.

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

속성 값

String

가져올 프로토콜의 대/소문자를 구분하지 않는 이름이 들어 있는 String입니다.

예제

다음 예제에서는 클래스를 사용할 때 속성을 사용하는 ProtocolName 방법을 보여 줍니다 ServiceDescriptionImporter .

// Initialize a service description importer.
ServiceDescriptionImporter^ importer = gcnew ServiceDescriptionImporter;
importer->ProtocolName = "Soap12"; // Use SOAP 1.2.
importer->AddServiceDescription( description, nullptr, nullptr );
// Initialize a service description importer.
ServiceDescriptionImporter importer = new ServiceDescriptionImporter();
importer.ProtocolName = "Soap12";  // Use SOAP 1.2.
importer.AddServiceDescription(description,null,null);

설명

이 속성의 허용되는 값은 다음과 같습니다.

  • "Soap"

  • "Soap12"

  • "HttpPost"

  • "HttpGet"

  • "HttpSoap"

기본값은 SOAP 1.1 표준을 나타내는 "Soap"입니다.

적용 대상