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