Channel<TWrite,TRead> 类

定义

提供支持读取类型 TRead 的元素和写入类型 TWrite 的元素的通道的基类。

generic <typename TWrite, typename TRead>
public ref class Channel abstract
public abstract class Channel<TWrite,TRead>
type Channel<'Write, 'Read> = class
Public MustInherit Class Channel(Of TWrite, TRead)

类型参数

TWrite

指定可写入通道的数据类型。

TRead

指定可从通道读取的数据的类型。

继承
Channel<TWrite,TRead>
派生

构造函数

Channel<TWrite,TRead>()

初始化 Channel<TWrite,TRead> 类的实例。

属性

Reader

获取此通道的可读取部分。

Writer

获取此通道的可写入部分。

方法

Equals(Object)

确定指定对象是否等于当前对象。

(继承自 Object)
GetHashCode()

作为默认哈希函数。

(继承自 Object)
GetType()

获取当前实例的 Type

(继承自 Object)
MemberwiseClone()

创建当前 Object 的浅表副本。

(继承自 Object)
ToString()

返回表示当前对象的字符串。

(继承自 Object)

运算符

Implicit(Channel<TWrite,TRead> to ChannelReader<TRead>)

Channel<TWrite,TRead> 隐式强制转换为其可读取部分。

Implicit(Channel<TWrite,TRead> to ChannelWriter<TWrite>)

Channel<TWrite,TRead> 隐式强制转换为其可写入部分。

适用于