HttpTransportBindingElement Constructors

Definition

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()

Source:
HttpTransportBindingElement.cs
Source:
HttpTransportBindingElement.cs
Source:
HttpTransportBindingElement.cs

Initializes a new instance of the HttpTransportBindingElement class.

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

Applies to

HttpTransportBindingElement(HttpTransportBindingElement)

Source:
HttpTransportBindingElement.cs
Source:
HttpTransportBindingElement.cs
Source:
HttpTransportBindingElement.cs

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.

Applies to