Show / Hide Table of Contents

Interface IDocument

BrowseSharp Document containing info about an http request and result

Namespace: BrowseSharp
Assembly: BrowseSharp.dll
Syntax
public interface IDocument

Properties

| Improve this Doc View Source

HtmlDocument

AngleSharp html document scraped from response

Declaration
IHtmlDocument HtmlDocument { get; set; }
Property Value
Type Description
AngleSharp.Dom.Html.IHtmlDocument
| Improve this Doc View Source

Request

Http request object

Declaration
IRestRequest Request { get; set; }
Property Value
Type Description
RestSharp.IRestRequest
| Improve this Doc View Source

Response

Response returned from http request

Declaration
IRestResponse Response { get; set; }
Property Value
Type Description
RestSharp.IRestResponse
| Improve this Doc View Source

Scripts

Javascripts scraped from http response

Declaration
List<Javascript> Scripts { get; set; }
Property Value
Type Description
System.Collections.Generic.List<Javascript>
| Improve this Doc View Source

Styles

Styles parsed from http response

Declaration
List<StyleSheet> Styles { get; set; }
Property Value
Type Description
System.Collections.Generic.List<StyleSheet>
  • Improve this Doc
  • View Source
Back to top Generated by DocFX