다음을 통해 공유


SoapBinding.HttpTransport 필드

정의

SOAP 데이터의 HTTP 전송을 지정하는 표준 프로토콜에 대한 URI를 가져옵니다. 이 필드는 상수입니다.

public: System::String ^ HttpTransport;
public const string HttpTransport;
val mutable HttpTransport : string
Public Const HttpTransport As String 

필드 값

String

예제

SoapBinding^ mySoapBinding = gcnew SoapBinding;
mySoapBinding->Transport = SoapBinding::HttpTransport;
mySoapBinding->Style = SoapBindingStyle::Document;
SoapBinding mySoapBinding = new SoapBinding();
mySoapBinding.Transport = SoapBinding.HttpTransport;
mySoapBinding.Style = SoapBindingStyle.Document;
Dim mySoapBinding As New SoapBinding()
mySoapBinding.Transport = SoapBinding.HttpTransport
mySoapBinding.Style = SoapBindingStyle.Document

설명

필드 값은 .입니다 "http://schemas.xmlsoap.org/soap/http/".

적용 대상