BatchedJoinBlock<T1,T2>.LinkTo 方法
定義
重要
部分資訊涉及發行前產品,在發行之前可能會有大幅修改。 Microsoft 對此處提供的資訊,不做任何明確或隱含的瑕疵擔保。
將 ISourceBlock<TOutput> 連結至指定的 ITargetBlock<TInput>。
public:
virtual IDisposable ^ LinkTo(System::Threading::Tasks::Dataflow::ITargetBlock<Tuple<System::Collections::Generic::IList<T1> ^, System::Collections::Generic::IList<T2> ^> ^> ^ target, System::Threading::Tasks::Dataflow::DataflowLinkOptions ^ linkOptions);
public IDisposable LinkTo (System.Threading.Tasks.Dataflow.ITargetBlock<Tuple<System.Collections.Generic.IList<T1>,System.Collections.Generic.IList<T2>>> target, System.Threading.Tasks.Dataflow.DataflowLinkOptions linkOptions);
abstract member LinkTo : System.Threading.Tasks.Dataflow.ITargetBlock<System.Collections.Generic.IList<'T1> * System.Collections.Generic.IList<'T2>> * System.Threading.Tasks.Dataflow.DataflowLinkOptions -> IDisposable
override this.LinkTo : System.Threading.Tasks.Dataflow.ITargetBlock<System.Collections.Generic.IList<'T1> * System.Collections.Generic.IList<'T2>> * System.Threading.Tasks.Dataflow.DataflowLinkOptions -> IDisposable
Public Function LinkTo (target As ITargetBlock(Of Tuple(Of IList(Of T1), IList(Of T2))), linkOptions As DataflowLinkOptions) As IDisposable
參數
- target
- ITargetBlock<Tuple<IList<T1>,IList<T2>>>
要將此來源連接至的 ITargetBlock<TInput>。
- linkOptions
- DataflowLinkOptions
設定連結的 DataflowLinkOptions 執行個體。
傳回
IDisposable,在呼叫 Dispose 時,將會取消來源和目標間的連結。
實作
例外狀況
target
為 null
(在 Visual Basic 中為 Nothing) 或 linkOptions
為 null
(在 Visual Basic 中為 Nothing)。