HttpTransportBindingElement コンストラクター

定義

HttpTransportBindingElementclass の新しいインスタンスを初期化します。

オーバーロード

名前 説明
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)
    {
    }
}

注釈

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

適用対象