System.ServiceModel.Channels.Http.HttpRequestContext.EndReply C# (CSharp) Метод

EndReply() публичный Метод

public EndReply ( IAsyncResult result ) : void
result IAsyncResult
Результат void
		public override void EndReply (IAsyncResult result)
		{
			if (result == null)
				throw new ArgumentNullException ("result");
			if (reply_delegate == null)
				throw new InvalidOperationException ("reply operation has not started");
			reply_delegate.EndInvoke (result);
		}