System.Web Namespace HttpWorkerRequest Class
Specifies the HTTP status code and status description of the response; for example SendStatus ( 200, "Ok" ).
[ VB ]
<ComVisible ( False ) >
MustOverride Public Sub SendStatus ( _
ByVal statusCode As Integer, _
ByVal statusDescription As String _
)
[ C# ]
[ ComVisible ( false ) ]
public abstract void SendStatus (
int statusCode,
string statusDescription
);
[ C++ ]
[ ComVisible ( false ) ]
public: virtual void SendStatus (
int statusCode,
String* statusDescription
) = 0;
[ JScript ]
public ComVisible ( false )
abstract function SendStatus (
statusCode : int,
statusDescription : String
);
- statusCode
- The status code to send
- statusDescription
- The status description to send.
HttpWorkerRequest Members HttpRuntime Class