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