ServiceDescriptionImporter.ProtocolName 속성
정의
중요
일부 정보는 릴리스되기 전에 상당 부분 수정될 수 있는 시험판 제품과 관련이 있습니다. Microsoft는 여기에 제공된 정보에 대해 어떠한 명시적이거나 묵시적인 보증도 하지 않습니다.
설명된 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입니다.
예제
다음 예제에서는 클래스를 사용할 때 속성을 사용하는 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"입니다.