Response Title Property C# API
Gets the HTML title of this Response. Gets a value that determines whether this Response contains an HTML title.

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

public string Title { get; }

Field Value

The HTML title of the response, or an empty string if no title was found.
Remarks

An HTML title is defined as the text between the HTML <title> tags.

e.g. in the HTML <title>My Page Title</title> the title is My Page Title

If the response does not contain HTML, or does not contain an HTML title, then this method returns an empty string. The HTML is interpreted using the current character encoding (as defined by CharEncoding).

See Also