4 instantiations of ExecutionDataflowBlockOptions
Microsoft.Build.Tasks.Core (1)
System.Threading.Tasks.Dataflow (3)
43 references to ExecutionDataflowBlockOptions
Microsoft.Build.Tasks.Core (1)
System.Threading.Tasks.Dataflow (42)
Blocks\TransformBlock.cs (8)
48this(transform, null, ExecutionDataflowBlockOptions.Default)
53/// <see cref="ExecutionDataflowBlockOptions"/>.
59public TransformBlock(Func<TInput, TOutput> transform, ExecutionDataflowBlockOptions dataflowBlockOptions) :
67this(null, transform, ExecutionDataflowBlockOptions.Default)
72/// and <see cref="ExecutionDataflowBlockOptions"/>.
78public TransformBlock(Func<TInput, Task<TOutput>> transform, ExecutionDataflowBlockOptions dataflowBlockOptions) :
91private TransformBlock(Func<TInput, TOutput>? transformSync, Func<TInput, Task<TOutput>>? transformAsync, ExecutionDataflowBlockOptions dataflowBlockOptions)
442public ExecutionDataflowBlockOptions DataflowBlockOptions { get { return _targetDebuggingInformation.DataflowBlockOptions; } }