17 references to WorkerType
System (17)
sys\System\IO\compression\DeflateStream.cs (17)
41private static volatile WorkerType deflaterType = WorkerType.Unknown; 42private static volatile WorkerType inflaterType = WorkerType.Unknown; 145case WorkerType.Managed: 148case WorkerType.ZLib: 165case WorkerType.Managed: 167case WorkerType.ZLib: 190private static WorkerType GetDeflaterType() { 196if (WorkerType.Unknown != deflaterType) 203return (deflaterType = WorkerType.Managed); 210return (deflaterType = WorkerType.ZLib); 214return (deflaterType = WorkerType.Managed); 220private static WorkerType GetInflaterType() { 226if (WorkerType.Unknown != inflaterType) 232return (inflaterType = WorkerType.ZLib); 236return (inflaterType = WorkerType.Managed);