protected override void OnEndSend(IAsyncResult result)
 {
     if (TD.MessageSentByTransportIsEnabled())
     {
         TD.MessageSentByTransport(this.RemoteAddress.Uri.AbsoluteUri);
     }
     SendAsyncResult.End(result);
 }
Example #2
0
 protected override void OnEndSend(IAsyncResult result)
 {
     if (result is CompletedAsyncResult)
     {
         CompletedAsyncResult.End(result);
     }
     else
     {
         SendAsyncResult.End(result);
     }
 }
Example #3
0
 void EndSend(IAsyncResult asyncResult)
 {
     SendAsyncResult.End(asyncResult);
 }
 protected override void OnEndSend(IAsyncResult result)
 {
     SendAsyncResult.End(result);
 }
Example #5
0
 /// <summary>
 /// Ends the asynchronous send operation.
 /// </summary>
 /// <param name="result">The <see cref="IAsyncResult"/> returned by the begin method.</param>
 /// <returns>The delivery outcome.</returns>
 public Outcome EndSendMessage(IAsyncResult result)
 {
     return(SendAsyncResult.End(result));
 }
Example #6
0
 public void EndSend(IAsyncResult result)
 {
     SendAsyncResult.End(result);
 }
Example #7
0
 void EndSendViaTopic(IAsyncResult ar)
 {
     SendAsyncResult.End(ar);
 }
Example #8
0
 public void EndSend(IAsyncResult result)
 {
     SendAsyncResult <TChannel> .End(result);
 }