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
이 쿼리에 대해 설정할 병합 옵션입니다.
반환
소스와 같은 쿼리를 나타내고 등록된 병합 옵션을 포함하는 ParallelQuery입니다.
예외
source
가 null 참조(Visual Basic의 경우 Nothing)인 경우
mergeOptions
는 유효한 ParallelMergeOptions 값이 아닙니다.
WithMergeOptions
은 쿼리에서 여러 번 사용됩니다.
적용 대상
추가 정보
GitHub에서 Microsoft와 공동 작업
이 콘텐츠의 원본은 GitHub에서 찾을 수 있으며, 여기서 문제와 끌어오기 요청을 만들고 검토할 수도 있습니다. 자세한 내용은 참여자 가이드를 참조하세요.
.NET