Back to product page

StatusLine property


Holds full status line returned to the client.

Type

String.

Syntax

  • C#
  • VB.NET
String StatusLine {get; set; };

Property StatusLine As String

Remarks

StatusLine property contains complete line that is sent as first line of response. Usually, it will contain something like this:
 
HTTP/1.1 200 OK
 

or
 
HTTP/1.1 404 Not found
 

It combines several other properties - HTTPVersion, StatusCode and StatusText. You can change this line either writing to this property, or writing to related 3 properties, and wodWebServer.NET will automatically parse it or combine, as needed.

Platforms

Windows