次の方法で共有


ServiceDescriptionCollection.GetBinding(XmlQualifiedName) メソッド

定義

ServiceDescriptionCollection を検索し、そのコレクションに格納されている Binding インスタンスのいずれかのメンバーである、指定した名前の ServiceDescription を返します。

public:
 System::Web::Services::Description::Binding ^ GetBinding(System::Xml::XmlQualifiedName ^ name);
public System.Web.Services.Description.Binding GetBinding (System.Xml.XmlQualifiedName name);
member this.GetBinding : System.Xml.XmlQualifiedName -> System.Web.Services.Description.Binding
Public Function GetBinding (name As XmlQualifiedName) As Binding

パラメーター

name
XmlQualifiedName

XmlQualifiedName インスタンスを取得するために使用される Name プロパティを持つ Binding

戻り値

Binding

指定した名前を持つバインディング。

例外

指定した Binding は、コレクション内のどの ServiceDescription インスタンスのメンバーでもありません。

// Construct an XML qualified name.
XmlQualifiedName^ myXmlQualifiedName =
   gcnew XmlQualifiedName( "MathServiceSoap","http://tempuri2.org/" );

// Get the Binding from the collection.
myCollection->GetBinding( myXmlQualifiedName );
// Construct an XML qualified name.
XmlQualifiedName myXmlQualifiedName =
   new XmlQualifiedName("MathServiceSoap", "http://tempuri2.org/");

// Get the Binding from the collection.
Binding myBinding = myCollection.GetBinding(myXmlQualifiedName);
' Construct an XML qualified name.
Dim myXmlQualifiedName As _
   New XmlQualifiedName("MathServiceSoap", "http://tempuri2.org/")

' Get the Binding from the collection.
Dim myBinding As Binding = _
   myCollection.GetBinding(myXmlQualifiedName)

適用対象