HttpTransportBindingElement Constructors
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Initializes a new instance of the HttpTransportBindingElementclass.
Overloads
HttpTransportBindingElement() |
Initializes a new instance of the HttpTransportBindingElement class. |
HttpTransportBindingElement(HttpTransportBindingElement) |
Initializes a new instance of the HttpTransportBindingElement class using another binding element. |
HttpTransportBindingElement()
Initializes a new instance of the HttpTransportBindingElement class.
public:
HttpTransportBindingElement();
public HttpTransportBindingElement ();
Public Sub New ()
Applies to
HttpTransportBindingElement(HttpTransportBindingElement)
Initializes a new instance of the HttpTransportBindingElement class using another binding element.
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)
Parameters
- elementToBeCloned
- HttpTransportBindingElement
An HttpTransportBindingElement object used to initialize this instance.
Examples
The following example shows how to use the copy constructor in a derived class.
public class MyBindingElement : HttpTransportBindingElement
{
public MyBindingElement(MyBindingElement elementToBeCloned) : base(elementToBeCloned)
{
}
}
Remarks
This method is a copy constructor used to clone the binding.