Determines whether this Response contains a particular HTTP
response header.
Namespace: Facilita.WebAssembly: clrWebBrowser (in clrWebBrowser.dll) Version: 9.5.7.98 (1.0.0.0)
Syntax
Parameters
- header
- Type: System String
The header to check for.
Return Value
true if this Response contains the specified header; otherwise, false.Examples
if (response.ContainsHeader("Last-Modified")) { string lastModified = response.GetHeaderValue("Last-Modified"); ... }
See Also