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.
BroadcastBlock<T> Constructor (Func<T, T>^, DataflowBlockOptions^)
Initializes the BroadcastBlock<T> with the specified cloning function and DataflowBlockOptions.
Assembly: System.Threading.Tasks.Dataflow (in System.Threading.Tasks.Dataflow.dll)
public:
BroadcastBlock(
Func<T, T>^ cloningFunction,
DataflowBlockOptions^ dataflowBlockOptions
)
Parameters
- cloningFunction
-
Type:
System::Func<T, T>^
The function to use to clone the data when offered to other blocks.
- dataflowBlockOptions
-
Type:
System.Threading.Tasks.Dataflow::DataflowBlockOptions^
The options with which to configure this BroadcastBlock<T>.
| Exception | Condition |
|---|---|
| ArgumentNullException | The dataflowBlockOptions is null. |
Show: