HttpListenerResponse.StatusCode Property
Gets or sets the HTTP status code to be returned to the client.
Assembly: System (in System.dll)
Property Value
Type: System.Int32An Int32 value that specifies the HTTP status code for the requested resource. The default is OK, indicating that the server successfully processed the client's request and included the requested resource in the response body.
| Exception | Condition |
|---|---|
| ObjectDisposedException | This object is closed. |
| ProtocolViolationException | The value specified for a set operation is not valid. Valid values are between 100 and 999 inclusive. |
Clients use the status code returned by the server to decide how to proceed. A value of OK indicates that the server successfully processed the client's request and included the requested resource in the response body. Other common status codes include NotFound, indicating that the requested resource was not found on the server, and NotModified, indicating that it was unnecessary to return the requested resource in the response body because the client's cached copy of the resource is up-to-date.
For a complete list of possible status codes, see the HttpStatusCode enumeration.
Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows XP SP2 x64 Edition, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2
The .NET Framework does not support all versions of every platform. For a list of the supported versions, see .NET Framework System Requirements.