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.

TransformManyBlock<TInput, TOutput>::LinkTo Method (ITargetBlock<TOutput>^, DataflowLinkOptions^)

 

Links the ISourceBlock<TOutput> to the specified ITargetBlock<TInput> .

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

public:
virtual IDisposable^ LinkTo(
	ITargetBlock<TOutput>^ target,
	DataflowLinkOptions^ linkOptions
) sealed

Parameters

target
Type: System.Threading.Tasks.Dataflow::ITargetBlock<TOutput>^

The ITargetBlock<TInput> to which to connect this source.

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

A DataflowLinkOptions instance that configures the link.

Return Value

Type: System::IDisposable^

An IDisposable that, upon calling Dispose, will unlink the source from the target.

Exception Condition
ArgumentNullException

target is null (Nothing in Visual Basic) or linkOptions is null (Nothing in Visual Basic).

Return to top
Show:
© 2017 Microsoft