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.

DataflowBlock::LinkTo<TOutput> Method (ISourceBlock<TOutput>^, ITargetBlock<TOutput>^)

 

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:
generic<typename TOutput>
[ExtensionAttribute]
static IDisposable^ LinkTo(
	ISourceBlock<TOutput>^ source,
	ITargetBlock<TOutput>^ target
)

Parameters

source
Type: System.Threading.Tasks.Dataflow::ISourceBlock<TOutput>^

The source from which to link.

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

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

Return Value

Type: System::IDisposable^

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

Type Parameters

TOutput

Specifies the type of data contained in the source.

Exception Condition
ArgumentNullException

The source is null.

-or-

The target is null.

Return to top
Show:
© 2017 Microsoft