コード例 #1
0
 public virtual void EndProcessRequest(IAsyncResult result)
 {
     Logging.Write.Info("Async call: EndProcessRequest(), threadid=" + Thread.CurrentThread.ManagedThreadId);
     _Delegate.EndInvoke(result);
 }
コード例 #2
0
ファイル: ProxyHandler.cs プロジェクト: virajs/monoscape
 /// <summary>
 /// Provides an asynchronous process End method when the process ends.
 /// </summary>
 /// <param name="result">An <see cref="T:System.IAsyncResult"></see> that contains information about the status of the process.</param>
 public void EndProcessRequest(IAsyncResult result)
 {
     Log.Debug(typeof(ProxyHandler), "EndProcessRequest()");
     delegate_.EndInvoke(result);
 }