[]
Parses a string into a C1Document.
public C1Document ConvertToDocument(string html)
Type | Name | Description |
---|---|---|
string | html | String containing the HTML document. |
Type | Description |
---|---|
C1Document | A C1Document that represents the given string. |
Parses a string into a C1Document.
public C1Document ConvertToDocument(string html, Uri baseUri)
Type | Name | Description |
---|---|---|
string | html | String containing the HTML document. |
Uri | baseUri | Base Uri used for resolving image references. |
Type | Description |
---|---|
C1Document | A C1Document that represents the given string. |
Converts a C1HtmlDocument to a C1Document.
public C1Document ConvertToDocument(C1HtmlDocument htmlDoc)
Type | Name | Description |
---|---|---|
C1HtmlDocument | htmlDoc |
Type | Description |
---|---|
C1Document | A C1Document that represents the given C1HtmlDocument. |