SoapBinding.HttpTransport Campo

Definizione

Ottiene l'URI per il protocollo standard, specificando la trasmissione HTTP di dati SOAP. Questo campo è costante.

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

Valore del campo

String

Esempio

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

Commenti

Il valore del campo è "http://schemas.xmlsoap.org/soap/http/".

Si applica a