ChannelParameterCollection Construtores
Definição
Inicializa uma nova instância da classe ChannelParameterCollection.Initializes a new instance of the ChannelParameterCollection class.
Sobrecargas
| ChannelParameterCollection() |
Inicializa uma nova instância da classe ChannelParameterCollection.Initializes a new instance of the ChannelParameterCollection class. |
| ChannelParameterCollection(IChannel) |
Inicializa uma nova instância da classe ChannelParameterCollection.Initializes a new instance of the ChannelParameterCollection class. |
Comentários
Você pode definir Channel como channel chamando ChannelParameterCollection ou simplesmente invocar o Construtor pai chamando ChannelParameterCollection .You can set Channel to channel by calling ChannelParameterCollection, or simply invoke the parent constructor by calling ChannelParameterCollection.
ChannelParameterCollection()
Inicializa uma nova instância da classe ChannelParameterCollection.Initializes a new instance of the ChannelParameterCollection class.
public:
ChannelParameterCollection();
public ChannelParameterCollection ();
Public Sub New ()
Comentários
Esse construtor sem parâmetros chama implicitamente o construtor da classe pai.This parameterless constructor implicitly calls the constructor of the parent class.
Aplica-se a
ChannelParameterCollection(IChannel)
Inicializa uma nova instância da classe ChannelParameterCollection.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)
Parâmetros
- channel
- IChannel
O canal cujos parâmetros estão nesta coleção.The channel whose parameters are in this collection.
Comentários
Uma instância é criada com Channel definido como channel .An instance is created with Channel set to channel.