Response Content Property C# API
Gets the content of this Response, using the current encoding (as defined by CharEncoding) to decode the data.

Namespace: Facilita.Web
Assembly: clrWebBrowser (in clrWebBrowser.dll) Version: 9.5.5.77 (1.0.0.0)
Syntax

public string Content { get; }

Field Value

The decoded content of this Response.
Examples

The following example demonstrates getting the Response content.
// Interpret the content of the Response object as a utf-8 string  
response.CharEncoding = Encoding.UTF8;
string decodedUtf8Content = response.Content;
See Also