TransformManyBlock<TInput,TOutput> コンストラクター

定義

オーバーロード

TransformManyBlock<TInput,TOutput>(Func<TInput,IAsyncEnumerable<TOutput>>)

指定した関数を TransformManyBlock<TInput,TOutput> 使用して を初期化します。

TransformManyBlock<TInput,TOutput>(Func<TInput,IEnumerable<TOutput>>)

指定の関数で新しい TransformManyBlock<TInput,TOutput> を初期化します。

TransformManyBlock<TInput,TOutput>(Func<TInput,Task<IEnumerable<TOutput>>>)

指定の関数で新しい TransformManyBlock<TInput,TOutput> を初期化します。

TransformManyBlock<TInput,TOutput>(Func<TInput,IAsyncEnumerable<TOutput>>, ExecutionDataflowBlockOptions)

指定した 関数と ExecutionDataflowBlockOptionsを使用して をTransformManyBlock<TInput,TOutput>初期化します。

TransformManyBlock<TInput,TOutput>(Func<TInput,IEnumerable<TOutput>>, ExecutionDataflowBlockOptions)

指定した関数と TransformManyBlock<TInput,TOutput> を使用して、新しい ExecutionDataflowBlockOptions を初期化します。

TransformManyBlock<TInput,TOutput>(Func<TInput,Task<IEnumerable<TOutput>>>, ExecutionDataflowBlockOptions)

指定した関数と TransformManyBlock<TInput,TOutput> を使用して、新しい ExecutionDataflowBlockOptions を初期化します。

TransformManyBlock<TInput,TOutput>(Func<TInput,IAsyncEnumerable<TOutput>>)

ソース:
TransformManyBlock.IAsyncEnumerable.cs
ソース:
TransformManyBlock.IAsyncEnumerable.cs
ソース:
TransformManyBlock.IAsyncEnumerable.cs

指定した関数を TransformManyBlock<TInput,TOutput> 使用して を初期化します。

public:
 TransformManyBlock(Func<TInput, System::Collections::Generic::IAsyncEnumerable<TOutput> ^> ^ transform);
public TransformManyBlock (Func<TInput,System.Collections.Generic.IAsyncEnumerable<TOutput>> transform);
new System.Threading.Tasks.Dataflow.TransformManyBlock<'Input, 'Output> : Func<'Input, System.Collections.Generic.IAsyncEnumerable<'Output>> -> System.Threading.Tasks.Dataflow.TransformManyBlock<'Input, 'Output>
Public Sub New (transform As Func(Of TInput, IAsyncEnumerable(Of TOutput)))

パラメーター

transform
Func<TInput,IAsyncEnumerable<TOutput>>

受信した各データ要素で呼び出す関数。 返された IAsyncEnumerable<T> のすべてのデータがこの TransformManyBlock<TInput,TOutput> から出力として使用できるようになります。

例外

transformnull です。

適用対象

TransformManyBlock<TInput,TOutput>(Func<TInput,IEnumerable<TOutput>>)

ソース:
TransformManyBlock.cs
ソース:
TransformManyBlock.cs
ソース:
TransformManyBlock.cs

指定の関数で新しい TransformManyBlock<TInput,TOutput> を初期化します。

public:
 TransformManyBlock(Func<TInput, System::Collections::Generic::IEnumerable<TOutput> ^> ^ transform);
public TransformManyBlock (Func<TInput,System.Collections.Generic.IEnumerable<TOutput>> transform);
new System.Threading.Tasks.Dataflow.TransformManyBlock<'Input, 'Output> : Func<'Input, seq<'Output>> -> System.Threading.Tasks.Dataflow.TransformManyBlock<'Input, 'Output>
Public Sub New (transform As Func(Of TInput, IEnumerable(Of TOutput)))

パラメーター

transform
Func<TInput,IEnumerable<TOutput>>

受信した各データ要素で呼び出す関数。 返された IEnumerable<T> のすべてのデータがこの TransformManyBlock<TInput,TOutput> から出力として使用できるようになります。

例外

transformnull です。

適用対象

TransformManyBlock<TInput,TOutput>(Func<TInput,Task<IEnumerable<TOutput>>>)

ソース:
TransformManyBlock.cs
ソース:
TransformManyBlock.cs
ソース:
TransformManyBlock.cs

指定の関数で新しい TransformManyBlock<TInput,TOutput> を初期化します。

public:
 TransformManyBlock(Func<TInput, System::Threading::Tasks::Task<System::Collections::Generic::IEnumerable<TOutput> ^> ^> ^ transform);
public TransformManyBlock (Func<TInput,System.Threading.Tasks.Task<System.Collections.Generic.IEnumerable<TOutput>>> transform);
new System.Threading.Tasks.Dataflow.TransformManyBlock<'Input, 'Output> : Func<'Input, System.Threading.Tasks.Task<seq<'Output>>> -> System.Threading.Tasks.Dataflow.TransformManyBlock<'Input, 'Output>
Public Sub New (transform As Func(Of TInput, Task(Of IEnumerable(Of TOutput))))

パラメーター

transform
Func<TInput,Task<IEnumerable<TOutput>>>

受信した各データ要素で呼び出す関数。 で IEnumerable<T> 非同期的に返されるすべてのデータは、この TransformManyBlock<TInput,TOutput>から出力として使用できるようになります。

例外

transformnull です。

適用対象

TransformManyBlock<TInput,TOutput>(Func<TInput,IAsyncEnumerable<TOutput>>, ExecutionDataflowBlockOptions)

ソース:
TransformManyBlock.IAsyncEnumerable.cs
ソース:
TransformManyBlock.IAsyncEnumerable.cs
ソース:
TransformManyBlock.IAsyncEnumerable.cs

指定した 関数と ExecutionDataflowBlockOptionsを使用して をTransformManyBlock<TInput,TOutput>初期化します。

public:
 TransformManyBlock(Func<TInput, System::Collections::Generic::IAsyncEnumerable<TOutput> ^> ^ transform, System::Threading::Tasks::Dataflow::ExecutionDataflowBlockOptions ^ dataflowBlockOptions);
public TransformManyBlock (Func<TInput,System.Collections.Generic.IAsyncEnumerable<TOutput>> transform, System.Threading.Tasks.Dataflow.ExecutionDataflowBlockOptions dataflowBlockOptions);
new System.Threading.Tasks.Dataflow.TransformManyBlock<'Input, 'Output> : Func<'Input, System.Collections.Generic.IAsyncEnumerable<'Output>> * System.Threading.Tasks.Dataflow.ExecutionDataflowBlockOptions -> System.Threading.Tasks.Dataflow.TransformManyBlock<'Input, 'Output>
Public Sub New (transform As Func(Of TInput, IAsyncEnumerable(Of TOutput)), dataflowBlockOptions As ExecutionDataflowBlockOptions)

パラメーター

transform
Func<TInput,IAsyncEnumerable<TOutput>>

受信した各データ要素で呼び出す関数。 返された IAsyncEnumerable<T> のすべてのデータがこの TransformManyBlock<TInput,TOutput> から出力として使用できるようになります。

dataflowBlockOptions
ExecutionDataflowBlockOptions

この TransformManyBlock<TInput,TOutput> の構成に使用するオプション。

例外

transform または dataflowBlockOptionsnull です。

適用対象

TransformManyBlock<TInput,TOutput>(Func<TInput,IEnumerable<TOutput>>, ExecutionDataflowBlockOptions)

ソース:
TransformManyBlock.cs
ソース:
TransformManyBlock.cs
ソース:
TransformManyBlock.cs

指定した関数と TransformManyBlock<TInput,TOutput> を使用して、新しい ExecutionDataflowBlockOptions を初期化します。

public:
 TransformManyBlock(Func<TInput, System::Collections::Generic::IEnumerable<TOutput> ^> ^ transform, System::Threading::Tasks::Dataflow::ExecutionDataflowBlockOptions ^ dataflowBlockOptions);
public TransformManyBlock (Func<TInput,System.Collections.Generic.IEnumerable<TOutput>> transform, System.Threading.Tasks.Dataflow.ExecutionDataflowBlockOptions dataflowBlockOptions);
new System.Threading.Tasks.Dataflow.TransformManyBlock<'Input, 'Output> : Func<'Input, seq<'Output>> * System.Threading.Tasks.Dataflow.ExecutionDataflowBlockOptions -> System.Threading.Tasks.Dataflow.TransformManyBlock<'Input, 'Output>
Public Sub New (transform As Func(Of TInput, IEnumerable(Of TOutput)), dataflowBlockOptions As ExecutionDataflowBlockOptions)

パラメーター

transform
Func<TInput,IEnumerable<TOutput>>

受信した各データ要素で呼び出す関数。 で IEnumerable<T> 返された からのすべてのデータは、この TransformManyBlock<TInput,TOutput>からの出力として使用できるようになります。

dataflowBlockOptions
ExecutionDataflowBlockOptions

この TransformManyBlock<TInput,TOutput> の構成に使用するオプション。

例外

transformnull です。

- または -

dataflowBlockOptionsnull です。

適用対象

TransformManyBlock<TInput,TOutput>(Func<TInput,Task<IEnumerable<TOutput>>>, ExecutionDataflowBlockOptions)

ソース:
TransformManyBlock.cs
ソース:
TransformManyBlock.cs
ソース:
TransformManyBlock.cs

指定した関数と TransformManyBlock<TInput,TOutput> を使用して、新しい ExecutionDataflowBlockOptions を初期化します。

public:
 TransformManyBlock(Func<TInput, System::Threading::Tasks::Task<System::Collections::Generic::IEnumerable<TOutput> ^> ^> ^ transform, System::Threading::Tasks::Dataflow::ExecutionDataflowBlockOptions ^ dataflowBlockOptions);
public TransformManyBlock (Func<TInput,System.Threading.Tasks.Task<System.Collections.Generic.IEnumerable<TOutput>>> transform, System.Threading.Tasks.Dataflow.ExecutionDataflowBlockOptions dataflowBlockOptions);
new System.Threading.Tasks.Dataflow.TransformManyBlock<'Input, 'Output> : Func<'Input, System.Threading.Tasks.Task<seq<'Output>>> * System.Threading.Tasks.Dataflow.ExecutionDataflowBlockOptions -> System.Threading.Tasks.Dataflow.TransformManyBlock<'Input, 'Output>
Public Sub New (transform As Func(Of TInput, Task(Of IEnumerable(Of TOutput))), dataflowBlockOptions As ExecutionDataflowBlockOptions)

パラメーター

transform
Func<TInput,Task<IEnumerable<TOutput>>>

受信した各データ要素で呼び出す関数。 で IEnumerable<T> 非同期的に返されるすべてのデータは、この TransformManyBlock<TInput,TOutput>から出力として使用できるようになります。

dataflowBlockOptions
ExecutionDataflowBlockOptions

この TransformManyBlock<TInput,TOutput> の構成に使用するオプション。

例外

transformnull です。

- または -

dataflowBlockOptionsnull です。

適用対象