protected override void OnEndSend(IAsyncResult result) { if (TD.MessageSentByTransportIsEnabled()) { TD.MessageSentByTransport(this.RemoteAddress.Uri.AbsoluteUri); } SendAsyncResult.End(result); }
protected override void OnEndSend(IAsyncResult result) { if (result is CompletedAsyncResult) { CompletedAsyncResult.End(result); } else { SendAsyncResult.End(result); } }
void EndSend(IAsyncResult asyncResult) { SendAsyncResult.End(asyncResult); }
protected override void OnEndSend(IAsyncResult result) { SendAsyncResult.End(result); }
/// <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)); }
public void EndSend(IAsyncResult result) { SendAsyncResult.End(result); }
void EndSendViaTopic(IAsyncResult ar) { SendAsyncResult.End(ar); }
public void EndSend(IAsyncResult result) { SendAsyncResult <TChannel> .End(result); }