ChannelParameterCollection Constructors

Definition

Initializes a new instance of the ChannelParameterCollection class.

Overloads

ChannelParameterCollection()

Initializes a new instance of the ChannelParameterCollection class.

ChannelParameterCollection(IChannel)

Initializes a new instance of the ChannelParameterCollection class.

Remarks

You can set Channel to channel by calling ChannelParameterCollection, or simply invoke the parent constructor by calling ChannelParameterCollection.

ChannelParameterCollection()

Source:
ChannelParameterCollection.cs
Source:
ChannelParameterCollection.cs
Source:
ChannelParameterCollection.cs

Initializes a new instance of the ChannelParameterCollection class.

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

Remarks

This parameterless constructor implicitly calls the constructor of the parent class.

Applies to

ChannelParameterCollection(IChannel)

Source:
ChannelParameterCollection.cs
Source:
ChannelParameterCollection.cs
Source:
ChannelParameterCollection.cs

Initializes a new instance of the ChannelParameterCollection class.

public:
 ChannelParameterCollection(System::ServiceModel::Channels::IChannel ^ channel);
public ChannelParameterCollection (System.ServiceModel.Channels.IChannel channel);
new System.ServiceModel.Channels.ChannelParameterCollection : System.ServiceModel.Channels.IChannel -> System.ServiceModel.Channels.ChannelParameterCollection
Public Sub New (channel As IChannel)

Parameters

channel
IChannel

The channel whose parameters are in this collection.

Remarks

An instance is created with Channel set to channel.

Applies to