2 instantiations of InnerAsyncResult
System (2)
net\System\Net\Cache\_CacheStreams.cs (2)
682
InnerAsyncResult userResult = new
InnerAsyncResult
(state, callback, buffer, offset, count);
685
userResult = new
InnerAsyncResult
(temp, null, new byte[4096],
10 references to InnerAsyncResult
System (10)
net\System\Net\Cache\_CacheStreams.cs (10)
526
GlobalLog.Assert(transportResult.AsyncState is
InnerAsyncResult
, "InnerAsyncResult::ReadCallback|The state expected to be of type InnerAsyncResult, received {0}.", transportResult.GetType().FullName);
533
InnerAsyncResult
userResult = transportResult.AsyncState as
InnerAsyncResult
;
543
InnerAsyncResult
userResult = transportResult.AsyncState as
InnerAsyncResult
;
618
userResult = userResult.AsyncState as
InnerAsyncResult
;
682
InnerAsyncResult
userResult = new InnerAsyncResult(state, callback, buffer, offset, count);
684
InnerAsyncResult
temp = userResult;
713
InnerAsyncResult
myResult = asyncResult as
InnerAsyncResult
;