Share via


StatusCode Property

[This documentation is for preview only, and is subject to change in later releases. Blank topics are included as placeholders.]

Gets or sets the HTTP status code to be returned to the client.

Namespace:  System.Net
Assembly:  System.Http (in System.Http.dll)

Syntax

'Declaration
Public Property StatusCode As Integer
public int StatusCode { get; set; }
public:
property int StatusCode {
    int get ();
    void set (int value);
}
member StatusCode : int with get, set
function get StatusCode () : int
function set StatusCode (value : int)

Property Value

Type: System. . :: . .Int32
An 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.

Remarks

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.

.NET Framework Security

See Also

Reference

HttpListenerResponse Class

System.Net Namespace