Gets the content of this Response, using the
current encoding (as defined by CharEncoding) to decode the data.
Namespace: Facilita.WebAssembly: clrWebBrowser (in clrWebBrowser.dll) Version: 9.5.7.98 (1.0.0.0)
Syntax
Field Value
The decoded content of this Response.Examples
// Interpret the content of the Response object as a utf-8 string response.CharEncoding = Encoding.UTF8; string decodedUtf8Content = response.Content;
See Also