HttpTransportBindingElement Konstruktory
Definicja
Ważne
Niektóre informacje odnoszą się do produktu w wersji wstępnej, który może zostać znacząco zmodyfikowany przed wydaniem. Firma Microsoft nie udziela żadnych gwarancji, jawnych lub domniemanych, w odniesieniu do informacji podanych w tym miejscu.
Inicjuje HttpTransportBindingElementnowe wystąpienie klasy.
Przeciążenia
HttpTransportBindingElement() |
Inicjuje nowe wystąpienie klasy HttpTransportBindingElement. |
HttpTransportBindingElement(HttpTransportBindingElement) |
Inicjuje HttpTransportBindingElement nowe wystąpienie klasy przy użyciu innego elementu powiązania. |
HttpTransportBindingElement()
Inicjuje nowe wystąpienie klasy HttpTransportBindingElement.
public:
HttpTransportBindingElement();
public HttpTransportBindingElement ();
Public Sub New ()
Dotyczy
HttpTransportBindingElement(HttpTransportBindingElement)
Inicjuje HttpTransportBindingElement nowe wystąpienie klasy przy użyciu innego elementu powiązania.
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)
Parametry
- elementToBeCloned
- HttpTransportBindingElement
Obiekt HttpTransportBindingElement używany do inicjowania tego wystąpienia.
Przykłady
W poniższym przykładzie pokazano, jak używać konstruktora kopiowania w klasie pochodnej.
public class MyBindingElement : HttpTransportBindingElement
{
public MyBindingElement(MyBindingElement elementToBeCloned) : base(elementToBeCloned)
{
}
}
Uwagi
Ta metoda jest konstruktorem kopiowania używanym do klonowania powiązania.