ChannelListenerBase 构造函数

定义

初始化 ChannelListenerBase 类的新实例。

重载

ChannelListenerBase()

初始化 ChannelListenerBase 类的新实例。

ChannelListenerBase(IDefaultCommunicationTimeouts)

使用指定的默认通信超时初始化 ChannelListenerBase 类的新实例。

注解

在交换消息时,默认的 ChannelListenerBase() 构造函数使用服务模型超时值对超时属性进行初始化。 打开、发送和关闭操作的默认值为 1 分钟,接收操作的默认值为 10 分钟。 若要为这些操作超时指定其他值,请使用 ChannelListenerBase(IDefaultCommunicationTimeouts)

ChannelListenerBase()

初始化 ChannelListenerBase 类的新实例。

protected:
 ChannelListenerBase();
protected ChannelListenerBase ();
Protected Sub New ()

注解

无参数构造函数在交换消息时使用服务模型超时值初始化超时属性。 打开、发送和关闭操作的默认值为 1 分钟,接收操作的默认值为 10 分钟。 若要为这些操作超时指定其他值,请使用 ChannelListenerBase(IDefaultCommunicationTimeouts)

适用于

ChannelListenerBase(IDefaultCommunicationTimeouts)

使用指定的默认通信超时初始化 ChannelListenerBase 类的新实例。

protected:
 ChannelListenerBase(System::ServiceModel::IDefaultCommunicationTimeouts ^ timeouts);
protected ChannelListenerBase (System.ServiceModel.IDefaultCommunicationTimeouts timeouts);
new System.ServiceModel.Channels.ChannelListenerBase : System.ServiceModel.IDefaultCommunicationTimeouts -> System.ServiceModel.Channels.ChannelListenerBase
Protected Sub New (timeouts As IDefaultCommunicationTimeouts)

参数

timeouts
IDefaultCommunicationTimeouts

指定交换消息时打开、发送、接收和关闭操作的默认超时的 IDefaultCommunicationTimeouts

注解

ChannelListenerBase(IDefaultCommunicationTimeouts)如果要指定打开、发送、接收和关闭操作超时的自定义值,而不是使用服务模型默认值,请使用而不是无参数构造函数。

适用于