mscorlib(4.0.0.0) API with additions
AcceptAsyncResult.cs
2 {
3  internal class AcceptAsyncResult : ContextAwareResult
4  {
5  internal AcceptAsyncResult(object myObject, object myState, AsyncCallback myCallBack)
6  : base(myObject, myState, myCallBack)
7  {
8  }
9  }
10 }
delegate void AsyncCallback(IAsyncResult ar)
References a method to be called when a corresponding asynchronous operation completes.