IChannelListener<TChannel>.AcceptChannel 方法

定义

接受具有指定类型的通道以便与客户端进行通信。

重载

AcceptChannel()

接受具有指定类型的通道以便与客户端进行通信。

AcceptChannel(TimeSpan)

接受具有指定类型的通道以便在指定时间间隔内与客户端进行通信。

注解

建议使用带有显式超时的 AcceptChannel(TimeSpan) 重载。 为该方法指定的 timeout 会重写系统为服务设置的所有默认超时。

AcceptChannel()

Source:
IChannelListener.cs
Source:
IChannelListener.cs
Source:
IChannelListener.cs

接受具有指定类型的通道以便与客户端进行通信。

public:
 TChannel AcceptChannel();
public TChannel AcceptChannel ();
abstract member AcceptChannel : unit -> 'Channel
Public Function AcceptChannel () As TChannel

返回

TChannel

一个侦听器所接受的 TChannel 类型的通道。

注解

建议使用带有显式超时的 AcceptChannel(TimeSpan) 重载。 为该方法指定的 timeout 会重写系统为服务设置的所有默认超时。

适用于

AcceptChannel(TimeSpan)

Source:
IChannelListener.cs
Source:
IChannelListener.cs
Source:
IChannelListener.cs

接受具有指定类型的通道以便在指定时间间隔内与客户端进行通信。

public:
 TChannel AcceptChannel(TimeSpan timeout);
public TChannel AcceptChannel (TimeSpan timeout);
abstract member AcceptChannel : TimeSpan -> 'Channel
Public Function AcceptChannel (timeout As TimeSpan) As TChannel

参数

timeout
TimeSpan

TimeSpan,指定在超时前可用于完成等待通道操作的时间长度。

返回

TChannel

一个侦听器所接受的 TChannel 类型的通道。

注解

建议使用带有显式超时的此重载,而不是 AcceptChannel()。 为此方法指定的 timeout 会重写系统为服务设置的所有默认超时。

适用于