Back to product page
- Introduction
- License agreement
- Classes
- Enumerations
- Exceptions
- WeOnlyDo.Server.WebServer
- WeOnlyDo.Server.WebHeader
- WeOnlyDo.Server.WebHeaders
- WeOnlyDo.Server.WebRequest
- WeOnlyDo.Server.WebResponse
- WeOnlyDo.Server.WebSessions
- WeOnlyDo.Server.WebSessionVar
- WeOnlyDo.Server.WebSessionVars
- WeOnlyDo.Server.WebUpload
- WeOnlyDo.Server.WebUploads
- WeOnlyDo.Server.WebUser
- WeOnlyDo.Server.WebUsers
- How to get support?
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.