Gets the value of an HTTP response header contained in this Response.
Namespace: Facilita.WebAssembly: clrWebBrowser (in clrWebBrowser.dll) Version: 9.5.7.98 (1.0.0.0)
Syntax
Parameters
- header
- Type: System String
The HTTP response header to look for.
Return Value
The value of the header, or an empty string if the header does not exist.Examples
if (response.ContainsHeader("Last-Modified")) { string lastModified = response.GetHeaderValue("Last-Modified"); ... }
See Also