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