3 instantiations of AsyncResult
mscorlib (3)
system\runtime\remoting\realproxy.cs (1)
842
AsyncResult ar = new
AsyncResult
(msg);
system\runtime\remoting\remotingproxy.cs (2)
367
ar = new
AsyncResult
(reqMsg);
515
ar = new
AsyncResult
(m);
10 references to AsyncResult
mscorlib (9)
system\runtime\remoting\lease.cs (2)
482
AsyncResult
asyncResult = (
AsyncResult
)iar;
system\runtime\remoting\realproxy.cs (3)
575
AsyncResult
ar = reqMsg.GetAsyncResult() as
AsyncResult
;
842
AsyncResult
ar = new AsyncResult(msg);
system\runtime\remoting\remotingproxy.cs (4)
326
AsyncResult
ar = null;
507
AsyncResult
ar;
738
private
AsyncResult
_ar;
742
public AgileAsyncWorkerItem(IMethodCallMessage message,
AsyncResult
ar, Object target)
System.Runtime.Remoting (1)
channels\ipc\ipcclientchannel.cs (1)
335
AsyncMessageDelegate d = (AsyncMessageDelegate)(((
AsyncResult
)ar).AsyncDelegate);