DataflowBlock.Receive<TOutput> Method (ISourceBlock<TOutput>, CancellationToken)
Synchronously receives a value from a specified source and provides a token to cancel the operation.
Namespace: System.Threading.Tasks.Dataflow
Assembly: System.Threading.Tasks.Dataflow (in System.Threading.Tasks.Dataflow.dll)
public static TOutput Receive<TOutput>( this ISourceBlock<TOutput> source, CancellationToken cancellationToken )
Type Parameters
- TOutput
The type of data contained in the source.
Parameters
- source
- Type: System.Threading.Tasks.Dataflow.ISourceBlock<TOutput>
The source from which to receive the value.
- cancellationToken
- Type: System.Threading.CancellationToken
The token to use to cancel the receive operation.
Return Value
Type: TOutputThe received value.
Usage Note
In Visual Basic and C#, you can call this method as an instance method on any object of type ISourceBlock<TOutput>. When you use instance method syntax to call this method, omit the first parameter. For more information, see Extension Methods (Visual Basic) or Extension Methods (C# Programming Guide).| Exception | Condition |
|---|---|
| ArgumentNullException | source is null. |
| InvalidOperationException | No item could be received from the source. |
| OperationCanceledException | The operation was canceled before an item was received from the source. |
- Full trust for the immediate caller. This member cannot be used by partially trusted code. For more information, see Using Libraries from Partially Trusted Code.
Windows 8, Windows Server 2012, Windows 7, Windows Vista SP2, Windows Server 2008 (Server Core Role not supported), Windows Server 2008 R2 (Server Core Role supported with SP1 or later; Itanium not supported)
The .NET Framework does not support all versions of every platform. For a list of the supported versions, see .NET Framework System Requirements.