SoapBindingStyle 列挙型

定義

XML Web サービスで実行するアクションの種類について、この列挙体を適用するクラス階層構造レベルごとに指定します。

public enum class SoapBindingStyle
public enum SoapBindingStyle
type SoapBindingStyle = 
Public Enum SoapBindingStyle
継承
SoapBindingStyle

フィールド

Default 0

アクションの既定の種類。WSDL (Web Services Description Language) ファイルの現在の階層レベルに対応します。

Document 1

送信されているメッセージはドキュメント指向です。

Rpc 2

送信されているメッセージには、プロシージャ呼び出しのためのパラメーターまたはそのプロシージャからの戻り値が含まれます。 RPC は "リモート プロシージャ コール" の略語です。

SoapBinding^ mySoapBinding = gcnew SoapBinding;
mySoapBinding->Transport = "http://schemas.xmlsoap.org/soap/http";
mySoapBinding->Style = SoapBindingStyle::Document;

// Add the 'SoapBinding' object to the 'Binding' object.
myBinding->Extensions->Add( mySoapBinding );
SoapBinding mySoapBinding = new SoapBinding();
mySoapBinding.Transport = "http://schemas.xmlsoap.org/soap/http";
mySoapBinding.Style = SoapBindingStyle.Document;
// Add the 'SoapBinding' object to the 'Binding' object.
myBinding.Extensions.Add(mySoapBinding);
Dim mySoapBinding As New SoapBinding()
mySoapBinding.Transport = "http://schemas.xmlsoap.org/soap/http"
mySoapBinding.Style = SoapBindingStyle.Document
' Add the 'SoapBinding' object to the 'Binding' object.
myBinding.Extensions.Add(mySoapBinding)

注釈

この列挙により、ユーザーは送信されるメッセージがプロシージャ指向かドキュメント指向かを指定できます。 プロシージャ指向のメッセージにはパラメーターと戻り値が含まれますが、ドキュメント指向のメッセージにはドキュメントが含まれます。

適用対象