WriteOnceBlock<T> Constructors
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Overloads
WriteOnceBlock<T>(Func<T,T>) |
Initializes a new WriteOnceBlock<T>. |
WriteOnceBlock<T>(Func<T,T>, DataflowBlockOptions) |
Initializes a new WriteOnceBlock<T> with the specified DataflowBlockOptions. |
WriteOnceBlock<T>(Func<T,T>)
- Source:
- WriteOnceBlock.cs
- Source:
- WriteOnceBlock.cs
- Source:
- WriteOnceBlock.cs
Initializes a new WriteOnceBlock<T>.
public:
WriteOnceBlock(Func<T, T> ^ cloningFunction);
public WriteOnceBlock (Func<T,T> cloningFunction);
public WriteOnceBlock (Func<T,T>? cloningFunction);
new System.Threading.Tasks.Dataflow.WriteOnceBlock<'T> : Func<'T, 'T> -> System.Threading.Tasks.Dataflow.WriteOnceBlock<'T>
Public Sub New (cloningFunction As Func(Of T, T))
Parameters
- cloningFunction
- Func<T,T>
The function to use to clone the data when offered to other blocks.
Applies to
WriteOnceBlock<T>(Func<T,T>, DataflowBlockOptions)
- Source:
- WriteOnceBlock.cs
- Source:
- WriteOnceBlock.cs
- Source:
- WriteOnceBlock.cs
Initializes a new WriteOnceBlock<T> with the specified DataflowBlockOptions.
public:
WriteOnceBlock(Func<T, T> ^ cloningFunction, System::Threading::Tasks::Dataflow::DataflowBlockOptions ^ dataflowBlockOptions);
public WriteOnceBlock (Func<T,T> cloningFunction, System.Threading.Tasks.Dataflow.DataflowBlockOptions dataflowBlockOptions);
public WriteOnceBlock (Func<T,T>? cloningFunction, System.Threading.Tasks.Dataflow.DataflowBlockOptions dataflowBlockOptions);
new System.Threading.Tasks.Dataflow.WriteOnceBlock<'T> : Func<'T, 'T> * System.Threading.Tasks.Dataflow.DataflowBlockOptions -> System.Threading.Tasks.Dataflow.WriteOnceBlock<'T>
Public Sub New (cloningFunction As Func(Of T, T), dataflowBlockOptions As DataflowBlockOptions)
Parameters
- cloningFunction
- Func<T,T>
The function to use to clone the data when offered to other blocks.
- dataflowBlockOptions
- DataflowBlockOptions
The options with which to configure this WriteOnceBlock<T>.
Exceptions
The dataflowBlockOptions
is null
.