ParallelEnumerable.WithMergeOptions<TSource> メソッド
定義
重要
一部の情報は、リリース前に大きく変更される可能性があるプレリリースされた製品に関するものです。 Microsoft は、ここに記載されている情報について、明示または黙示を問わず、一切保証しません。
このクエリのマージ オプションを設定します。このオプションは、クエリが出力をバッファリングする方法を指定します。
public:
generic <typename TSource>
[System::Runtime::CompilerServices::Extension]
static System::Linq::ParallelQuery<TSource> ^ WithMergeOptions(System::Linq::ParallelQuery<TSource> ^ source, System::Linq::ParallelMergeOptions mergeOptions);
public static System.Linq.ParallelQuery<TSource> WithMergeOptions<TSource> (this System.Linq.ParallelQuery<TSource> source, System.Linq.ParallelMergeOptions mergeOptions);
static member WithMergeOptions : System.Linq.ParallelQuery<'Source> * System.Linq.ParallelMergeOptions -> System.Linq.ParallelQuery<'Source>
<Extension()>
Public Function WithMergeOptions(Of TSource) (source As ParallelQuery(Of TSource), mergeOptions As ParallelMergeOptions) As ParallelQuery(Of TSource)
型パラメーター
- TSource
source
の要素の型。
パラメーター
- source
- ParallelQuery<TSource>
オプションを設定する対象の ParallelQuery。
- mergeOptions
- ParallelMergeOptions
このクエリに設定するマージ オプション。
戻り値
source と同じクエリを表すが、マージ オプションが登録されている ParallelQuery。
例外
source
が null 参照 (Visual Basic では Nothing) です。
mergeOptions
は正しい ParallelMergeOptions 値ではありません。
WithMergeOptions
はクエリで複数回使用されます。
適用対象
こちらもご覧ください
GitHub で Microsoft と共同作業する
このコンテンツのソースは GitHub にあります。そこで、issue や pull request を作成および確認することもできます。 詳細については、共同作成者ガイドを参照してください。
.NET