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.netstandard21.cs
ソース:
TransformManyBlock.netstandard21.cs
ソース:
TransformManyBlock.IAsyncEnumerable.cs
ソース:
TransformManyBlock.IAsyncEnumerable.cs
ソース:
TransformManyBlock.IAsyncEnumerable.cs
ソース:
TransformManyBlock.netstandard21.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.cs
ソース:
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.cs
ソース:
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.netstandard21.cs
ソース:
TransformManyBlock.netstandard21.cs
ソース:
TransformManyBlock.IAsyncEnumerable.cs
ソース:
TransformManyBlock.IAsyncEnumerable.cs
ソース:
TransformManyBlock.IAsyncEnumerable.cs
ソース:
TransformManyBlock.netstandard21.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.cs
ソース:
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.cs
ソース:
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 です。

適用対象