5 types derived from AsyncIOOperation
Microsoft.AspNetCore.Server.IIS (5)
Core\IO\AsyncIOEngine.Flush.cs (1)
10
internal sealed class AsyncFlushOperation :
AsyncIOOperation
Core\IO\AsyncIOEngine.Read.cs (1)
11
internal sealed class AsyncReadOperation :
AsyncIOOperation
Core\IO\AsyncWriteOperationBase.cs (1)
10
internal abstract class AsyncWriteOperationBase :
AsyncIOOperation
Core\IO\WebSocketsAsyncIOEngine.Initialize.cs (1)
10
internal sealed class AsyncInitializeOperation :
AsyncIOOperation
Core\IO\WebSocketsAsyncIOEngine.Read.cs (1)
12
internal sealed class WebSocketReadOperation :
AsyncIOOperation
, IDisposable
6 references to AsyncIOOperation
Microsoft.AspNetCore.Server.IIS (6)
Core\IO\AsyncIOEngine.cs (6)
18
private
AsyncIOOperation
? _nextOperation;
19
private
AsyncIOOperation
? _runningOperation;
117
private void Run(
AsyncIOOperation
ioOperation)
170
AsyncIOOperation
.AsyncContinuation continuation;
171
AsyncIOOperation
.AsyncContinuation? nextContinuation = null;
179
var
next = _nextOperation;