Windows apps
Collapse the table of content
Expand the table of content
Information
The topic you requested is included in another documentation set. For convenience, it's displayed below. Choose Switch to see the topic in its original location.

JoinBlock<T1, T2, T3>::LinkTo Method (ITargetBlock<Tuple<T1, T2, T3>^>^, DataflowLinkOptions^)

 

Links the source block to the specified target block.

Namespace:   System.Threading.Tasks.Dataflow
Assembly:  System.Threading.Tasks.Dataflow (in System.Threading.Tasks.Dataflow.dll)

public:
virtual IDisposable^ LinkTo(
	ITargetBlock<Tuple<T1, T2, T3>^>^ target,
	DataflowLinkOptions^ linkOptions
) sealed

Parameters

target
Type: System.Threading.Tasks.Dataflow::ITargetBlock<Tuple<T1, T2, T3>^>^

The target block to which to connect this source.

linkOptions
Type: System.Threading.Tasks.Dataflow::DataflowLinkOptions^

An object that configures the link.

Return Value

Type: System::IDisposable^

A disposable object that unlinks the source from the target when its Dispose method is called.

Exception Condition
ArgumentNullException

target is null.

-or-

linkOptions is null.

Return to top
Show:
© 2017 Microsoft