Share via


HttpTransportBindingElement コンストラクター

定義

HttpTransportBindingElement クラスの新しいインスタンスを初期化します。

オーバーロード

HttpTransportBindingElement()

HttpTransportBindingElement クラスの新しいインスタンスを初期化します。

HttpTransportBindingElement(HttpTransportBindingElement)

別のバインディング要素を使用して HttpTransportBindingElement クラスの新しいインスタンスを初期化します。

HttpTransportBindingElement()

ソース:
HttpTransportBindingElement.cs
ソース:
HttpTransportBindingElement.cs
ソース:
HttpTransportBindingElement.cs

HttpTransportBindingElement クラスの新しいインスタンスを初期化します。

public:
 HttpTransportBindingElement();
public HttpTransportBindingElement ();
Public Sub New ()

適用対象

HttpTransportBindingElement(HttpTransportBindingElement)

ソース:
HttpTransportBindingElement.cs
ソース:
HttpTransportBindingElement.cs
ソース:
HttpTransportBindingElement.cs

別のバインディング要素を使用して HttpTransportBindingElement クラスの新しいインスタンスを初期化します。

protected:
 HttpTransportBindingElement(System::ServiceModel::Channels::HttpTransportBindingElement ^ elementToBeCloned);
protected HttpTransportBindingElement (System.ServiceModel.Channels.HttpTransportBindingElement elementToBeCloned);
new System.ServiceModel.Channels.HttpTransportBindingElement : System.ServiceModel.Channels.HttpTransportBindingElement -> System.ServiceModel.Channels.HttpTransportBindingElement
Protected Sub New (elementToBeCloned As HttpTransportBindingElement)

パラメーター

elementToBeCloned
HttpTransportBindingElement

このインスタンスを初期化するために使用する HttpTransportBindingElement オブジェクト。

次の例は、派生クラスでコピー コンストラクターを使用する方法を示しています。

public class MyBindingElement : HttpTransportBindingElement  
{  
    public MyBindingElement(MyBindingElement elementToBeCloned) : base(elementToBeCloned)  
    {  
    }  
}  

注釈

このメソッドは、バインドを複製するために使用されるコピー コンストラクターです。

適用対象