13 references to TargetCoreOptions
System.Threading.Tasks.Dataflow (13)
Blocks\ActionBlock.cs (3)
107null, dataflowBlockOptions, TargetCoreOptions.RepresentsBlockCompletion); 115null, dataflowBlockOptions, TargetCoreOptions.RepresentsBlockCompletion | TargetCoreOptions.UsesAsyncCompletion);
Blocks\TransformBlock.cs (2)
128_reorderingBuffer, dataflowBlockOptions, TargetCoreOptions.None); 135_reorderingBuffer, dataflowBlockOptions, TargetCoreOptions.UsesAsyncCompletion);
Blocks\TransformManyBlock.cs (3)
71Initialize(messageWithId => ProcessMessage(transform, messageWithId), dataflowBlockOptions, ref _source, ref _target, ref _reorderingBuffer, TargetCoreOptions.None); 95Initialize(messageWithId => ProcessMessageWithTask(transform, messageWithId), dataflowBlockOptions, ref _source, ref _target, ref _reorderingBuffer, TargetCoreOptions.UsesAsyncCompletion); 104TargetCoreOptions targetCoreOptions)
Blocks\TransformManyBlock.IAsyncEnumerable.cs (1)
45}, dataflowBlockOptions, ref _source, ref _target, ref _reorderingBuffer, TargetCoreOptions.UsesAsyncCompletion);
Internal\TargetCore.cs (4)
72private readonly TargetCoreOptions _targetCoreOptions; 111TargetCoreOptions targetCoreOptions) 286return (_targetCoreOptions & TargetCoreOptions.UsesAsyncCompletion) != 0; 797if ((_targetCoreOptions & TargetCoreOptions.RepresentsBlockCompletion) != 0 &&