HTTPResponseHeadersSetStatus Method |
Update the response status code and text
Namespace: FiddlerAssembly: FiddlerCore4 (in FiddlerCore4.dll) Version: 4.6.2.0
Syntax public void SetStatus(
int iCode,
string sDescription
)
Public Sub SetStatus (
iCode As Integer,
sDescription As String
)
public:
void SetStatus(
int iCode,
String^ sDescription
)
Parameters
- iCode
- Type: SystemInt32
HTTP Status code (e.g. 401) - sDescription
- Type: SystemString
HTTP Status text (e.g. "Access Denied")
See Also