RemObjects.InternetPack.Http.AsyncHttpContext.SendResponse C# (CSharp) Method

SendResponse() public method

public SendResponse ( ) : void
return void
		public void SendResponse()
		{
			if (this.ResponseSent)
				return;

			this.ResponseSent = true;
			this.CurrentResponse.FinalizeHeader();
			this.fWorker.SendResponse();
		}
	}