Woopsa.HTTPResponse.SetStatusCode C# (CSharp) Method

SetStatusCode() public method

Set the status and message code of the response
public SetStatusCode ( int responseCode, string responseMessage ) : void
responseCode int
responseMessage string
return void
        public void SetStatusCode(int responseCode, string responseMessage)
        {
            ResponseCode = responseCode;
            ResponseMessage = responseMessage;
        }