System.ServiceModel.Channels.Http.HttpRequestContext.BeginReply C# (CSharp) Method

BeginReply() public method

public BeginReply ( Message msg, AsyncCallback callback, object state ) : IAsyncResult
msg Message
callback AsyncCallback
state object
return IAsyncResult
		public override IAsyncResult BeginReply (
			Message msg, AsyncCallback callback, object state)
		{
			return BeginReply (msg,
				Channel.DefaultSendTimeout,
				callback, state);
		}

Same methods

HttpRequestContext::BeginReply ( Message msg, TimeSpan timeout, AsyncCallback callback, object state ) : IAsyncResult