1 write to _asyncActiveSemaphore
mscorlib (1)
system\io\stream.cs (1)
67
return LazyInitializer.EnsureInitialized(ref
_asyncActiveSemaphore
, () => new SemaphoreSlim(1, 1));
4 references to _asyncActiveSemaphore
mscorlib (4)
system\io\stream.cs (4)
401
Contract.Assert(
_asyncActiveSemaphore
!= null, "Must have been initialized in order to get here.");
402
_asyncActiveSemaphore
.Release();
589
Contract.Assert(
_asyncActiveSemaphore
!= null, "Must have been initialized in order to get here.");
590
_asyncActiveSemaphore
.Release();