NamedPipeTransportBindingElement.Clone Method

Definition

Creates a copy of the current binding element.

public:
 override System::ServiceModel::Channels::BindingElement ^ Clone();
public override System.ServiceModel.Channels.BindingElement Clone ();
override this.Clone : unit -> System.ServiceModel.Channels.BindingElement
Public Overrides Function Clone () As BindingElement

Returns

Returns a copy of the current binding element.

Examples

This example shows how to create a copy of the current binding element:

BindingElement bElementCopy =
    bElement.Clone();
Dim bElementCopy As BindingElement = bElement.Clone()

Applies to