Show / Hide Table of Contents

Class Document

Documents that contain data about each http request

Inheritance
System.Object
Document
Implements
IDocument
Inherited Members
System.Object.Equals(System.Object)
System.Object.Equals(System.Object, System.Object)
System.Object.GetHashCode()
System.Object.GetType()
System.Object.MemberwiseClone()
System.Object.ReferenceEquals(System.Object, System.Object)
System.Object.ToString()
Namespace: BrowseSharp
Assembly: BrowseSharp.dll
Syntax
public class Document : IDocument

Constructors

| Improve this Doc View Source

Document()

Default constructor generating new Document

Declaration
public Document()
| Improve this Doc View Source

Document(IRestRequest, IRestResponse)

Constructor generating new Document

Declaration
public Document(IRestRequest request, IRestResponse response)
Parameters
Type Name Description
RestSharp.IRestRequest request
RestSharp.IRestResponse response
| Improve this Doc View Source

Document(IRestRequest, IRestResponse, IHtmlDocument)

Constructor generating new Document

Declaration
public Document(IRestRequest request, IRestResponse response, IHtmlDocument htmlDocument)
Parameters
Type Name Description
RestSharp.IRestRequest request
RestSharp.IRestResponse response
AngleSharp.Dom.Html.IHtmlDocument htmlDocument

Properties

| Improve this Doc View Source

HtmlDocument

Anglesharp document parsed from response

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

Request

Request made by client

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

Response

Response returned by http request

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

Scripts

Javascripts parsed from response

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

Styles

Stylesheets parsed from response

Declaration
public List<StyleSheet> Styles { get; set; }
Property Value
Type Description
System.Collections.Generic.List<StyleSheet>

Implements

IDocument
  • Improve this Doc
  • View Source
Back to top Generated by DocFX