3 instantiations of ParallelOptions
mscorlib (1)
system\threading\Tasks\Parallel.cs (1)
163
internal static ParallelOptions s_defaultParallelOptions = new
ParallelOptions
();
System.Web (2)
Compilation\BuildProvidersCompiler.cs (2)
215
new
ParallelOptions
{ MaxDegreeOfParallelism = maxConcurrent },
777
new
ParallelOptions
{ MaxDegreeOfParallelism = maxConcurrent },
29 references to ParallelOptions
mscorlib (29)
system\threading\Tasks\Parallel.cs (28)
37
/// the default TaskScheduler (TaskScheduler.Default). <see cref="
ParallelOptions
"/> enables
47
/// Initializes a new instance of the <see cref="
ParallelOptions
"/> class.
65
/// associated with this <see cref="
ParallelOptions
"/> instance. Setting this property to null
111
/// associated with this <see cref="
ParallelOptions
"/> instance.
163
internal static
ParallelOptions
s_defaultParallelOptions = new ParallelOptions();
215
public static void Invoke(
ParallelOptions
parallelOptions, params Action[] actions)
498
public static ParallelLoopResult For(int fromInclusive, int toExclusive,
ParallelOptions
parallelOptions, Action<int> body)
541
public static ParallelLoopResult For(long fromInclusive, long toExclusive,
ParallelOptions
parallelOptions, Action<long> body)
668
public static ParallelLoopResult For(int fromInclusive, int toExclusive,
ParallelOptions
parallelOptions, Action<int, ParallelLoopState> body)
713
public static ParallelLoopResult For(long fromInclusive, long toExclusive,
ParallelOptions
parallelOptions,
904
int fromInclusive, int toExclusive,
ParallelOptions
parallelOptions,
981
long fromInclusive, long toExclusive,
ParallelOptions
parallelOptions,
1036
ParallelOptions
parallelOptions,
1351
ParallelOptions
parallelOptions,
1708
public static ParallelLoopResult ForEach<TSource>(IEnumerable<TSource> source,
ParallelOptions
parallelOptions, Action<TSource> body)
1795
public static ParallelLoopResult ForEach<TSource>(IEnumerable<TSource> source,
ParallelOptions
parallelOptions, Action<TSource, ParallelLoopState> body)
1882
public static ParallelLoopResult ForEach<TSource>(IEnumerable<TSource> source,
ParallelOptions
parallelOptions, Action<TSource, ParallelLoopState, long> body)
2019
ParallelOptions
parallelOptions, Func<TLocal> localInit,
2164
public static ParallelLoopResult ForEach<TSource, TLocal>(IEnumerable<TSource> source,
ParallelOptions
parallelOptions, Func<TLocal> localInit,
2217
ParallelOptions
parallelOptions,
2281
ParallelOptions
parallelOptions,
2340
ParallelOptions
parallelOptions,
2799
ParallelOptions
parallelOptions,
2874
ParallelOptions
parallelOptions,
2952
ParallelOptions
parallelOptions,
3050
ParallelOptions
parallelOptions,
3156
ParallelOptions
parallelOptions,
3193
ParallelOptions
parallelOptions,
system\threading\Tasks\Task.cs (1)
6736
ParallelOptions
parallelOptions, Action action, TaskCreationOptions creationOptions, InternalTaskOptions internalOptions)