2 instantiations of ReadAsyncResult
System.Web (2)
Hosting\IIS7WorkerRequest.cs (1)
607
ReadAsyncResult ar = new
ReadAsyncResult
(callback, state, buffer, offset, count, updatePerfCounter: true);
Hosting\ISAPIWorkerRequest.cs (1)
2608
ReadAsyncResult ar = new
ReadAsyncResult
(callback, state, buffer, offset, count, updatePerfCounter: false);
7 references to ReadAsyncResult
System.Web (7)
Hosting\IIS7WorkerRequest.cs (3)
607
ReadAsyncResult
ar = new ReadAsyncResult(callback, state, buffer, offset, count, updatePerfCounter: true);
654
ReadAsyncResult
ar = asyncResult as
ReadAsyncResult
;
Hosting\ISAPIWorkerRequest.cs (4)
2577
if (_asyncResultBase is
ReadAsyncResult
)
2608
ReadAsyncResult
ar = new ReadAsyncResult(callback, state, buffer, offset, count, updatePerfCounter: false);
2655
ReadAsyncResult
ar = asyncResult as
ReadAsyncResult
;