RemObjects.InternetPack.Http.HttpServerResponse.SendErrorWithCustomBody C# (CSharp) Method

SendErrorWithCustomBody() public method

public SendErrorWithCustomBody ( HttpStatusCode responseCode, String message ) : void
responseCode HttpStatusCode
message String
return void
		public void SendErrorWithCustomBody(HttpStatusCode responseCode, String message)
		{
			this.HttpCode = responseCode;
			this.ContentBytes = Encoding.ASCII.GetBytes(message);
			this.Header.ContentType = "text/html";
		}

Same methods

HttpServerResponse::SendErrorWithCustomBody ( Int32 responseCode, String message ) : void