DataflowBlock.AsObserver<TInput>(ITargetBlock<TInput>) 方法
定義
重要
部分資訊涉及發行前產品,在發行之前可能會有大幅修改。 Microsoft 對此處提供的資訊,不做任何明確或隱含的瑕疵擔保。
建立在 IObserver<T> 之上的新 ITargetBlock<TInput> Abstraction。
public:
generic <typename TInput>
[System::Runtime::CompilerServices::Extension]
static IObserver<TInput> ^ AsObserver(System::Threading::Tasks::Dataflow::ITargetBlock<TInput> ^ target);
public static IObserver<TInput> AsObserver<TInput> (this System.Threading.Tasks.Dataflow.ITargetBlock<TInput> target);
static member AsObserver : System.Threading.Tasks.Dataflow.ITargetBlock<'Input> -> IObserver<'Input>
<Extension()>
Public Function AsObserver(Of TInput) (target As ITargetBlock(Of TInput)) As IObserver(Of TInput)
類型參數
- TInput
指定目標區塊所接受的輸入型別。
參數
- target
- ITargetBlock<TInput>
要包裝的目標。
傳回
IObserver<TInput>
包裝目標區塊的觀察器。