System.Web Namespace HttpRequest Class
Saves an HTTP request to disk.
[ VB ]
Public Sub SaveAs ( _
ByVal filename As String, _
ByVal includeHeaders As Boolean _
)
[ C# ]
public void SaveAs (
string filename,
bool includeHeaders
);
[ C++ ]
public: void SaveAs (
String* filename,
bool includeHeaders
);
[ JScript ]
public function SaveAs (
filename : String,
includeHeaders : Boolean
);
- filename
- A string reference to a physical drive path.
- includeHeaders
- A Boolean value specifying whether an HTTP header should be saved to disk.
Saving the request context to disk can be useful in debugging.
HttpRequest Members