HttpTransportBindingElement Konstruktory
Definice
Důležité
Některé informace platí pro předběžně vydaný produkt, který se může zásadně změnit, než ho výrobce nebo autor vydá. Microsoft neposkytuje žádné záruky, výslovné ani předpokládané, týkající se zde uváděných informací.
Inicializuje novou instanci HttpTransportBindingElementtřídy.
Přetížení
HttpTransportBindingElement() |
Inicializuje novou instanci HttpTransportBindingElement třídy. |
HttpTransportBindingElement(HttpTransportBindingElement) |
Inicializuje novou instanci HttpTransportBindingElement třídy pomocí jiného elementu vazby. |
HttpTransportBindingElement()
Inicializuje novou instanci HttpTransportBindingElement třídy.
public:
HttpTransportBindingElement();
public HttpTransportBindingElement ();
Public Sub New ()
Platí pro
HttpTransportBindingElement(HttpTransportBindingElement)
Inicializuje novou instanci HttpTransportBindingElement třídy pomocí jiného elementu vazby.
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
Objekt HttpTransportBindingElement použitý k inicializaci této instance.
Příklady
Následující příklad ukazuje, jak použít konstruktor kopírování v odvozené třídě.
public class MyBindingElement : HttpTransportBindingElement
{
public MyBindingElement(MyBindingElement elementToBeCloned) : base(elementToBeCloned)
{
}
}
Poznámky
Tato metoda je konstruktor kopírování použitý ke klonování vazby.