HtmlDocumentExtensions Type
Static members
Static member | Description |
|
|
Full Usage:
HtmlDocumentExtensions.Descendants(doc, name)
Parameters:
HtmlDocument
-
The given document
name : string
-
The name to match
Returns: HtmlNode seq
|
|
Full Usage:
HtmlDocumentExtensions.Descendants(doc, name, recurseOnMatch)
Parameters:
HtmlDocument
-
The given document
name : string
-
The name to match
recurseOnMatch : bool
-
If a match is found continues down the tree matching child elements
Returns: HtmlNode seq
|
|
Full Usage:
HtmlDocumentExtensions.Descendants(doc, names)
Parameters:
HtmlDocument
-
The given document
names : string seq
-
The set of names to match
Returns: HtmlNode seq
|
|
Full Usage:
HtmlDocumentExtensions.Descendants(doc, names, recurseOnMatch)
Parameters:
HtmlDocument
-
The given document
names : string seq
-
The set of names to match
recurseOnMatch : bool
-
If a match is found continues down the tree matching child elements
Returns: HtmlNode seq
|
|
Full Usage:
HtmlDocumentExtensions.Descendants(doc)
Parameters:
HtmlDocument
Returns: HtmlNode seq
|
|
Full Usage:
HtmlDocumentExtensions.Descendants(doc, predicate)
Parameters:
HtmlDocument
-
The given document
predicate : HtmlNode -> bool
-
The predicate by which to match the nodes to return
Returns: HtmlNode seq
|
|
Full Usage:
HtmlDocumentExtensions.Descendants(doc, predicate, recurseOnMatch)
Parameters:
HtmlDocument
-
The given document
predicate : HtmlNode -> bool
-
The predicate by which to match the nodes to return
recurseOnMatch : bool
-
If a match is found continues down the tree matching child elements
Returns: HtmlNode seq
|
|
Full Usage:
HtmlDocumentExtensions.DescendantsWithPath(doc, name)
Parameters:
HtmlDocument
-
The given document
name : string
-
The name to match
Returns: (HtmlNode * HtmlNode list) seq
|
|
Full Usage:
HtmlDocumentExtensions.DescendantsWithPath(doc, name, recurseOnMatch)
Parameters:
HtmlDocument
-
The given document
name : string
-
The name to match
recurseOnMatch : bool
-
If a match is found continues down the tree matching child elements
Returns: (HtmlNode * HtmlNode list) seq
|
|
Full Usage:
HtmlDocumentExtensions.DescendantsWithPath(doc, names)
Parameters:
HtmlDocument
-
The given document
names : string seq
-
The set of names to match
Returns: (HtmlNode * HtmlNode list) seq
|
|
Full Usage:
HtmlDocumentExtensions.DescendantsWithPath(doc, names, recurseOnMatch)
Parameters:
HtmlDocument
-
The given document
names : string seq
-
The set of names to match
recurseOnMatch : bool
-
If a match is found continues down the tree matching child elements
Returns: (HtmlNode * HtmlNode list) seq
|
|
Full Usage:
HtmlDocumentExtensions.DescendantsWithPath(doc)
Parameters:
HtmlDocument
Returns: (HtmlNode * HtmlNode list) seq
|
|
Full Usage:
HtmlDocumentExtensions.DescendantsWithPath(doc, predicate)
Parameters:
HtmlDocument
-
The given document
predicate : HtmlNode -> bool
-
The predicate by which to match the nodes to return
Returns: (HtmlNode * HtmlNode list) seq
|
|
Full Usage:
HtmlDocumentExtensions.DescendantsWithPath(doc, predicate, recurseOnMatch)
Parameters:
HtmlDocument
-
The given document
predicate : HtmlNode -> bool
-
The predicate by which to match the nodes to return
recurseOnMatch : bool
-
If a match is found continues down the tree matching child elements
Returns: (HtmlNode * HtmlNode list) seq
|
|
Full Usage:
HtmlDocumentExtensions.Elements(doc, name)
Parameters:
HtmlDocument
-
The given document
name : string
-
The name to match
Returns: HtmlNode list
|
|
Full Usage:
HtmlDocumentExtensions.Elements(doc, names)
Parameters:
HtmlDocument
-
The given document
names : string seq
-
The set of names to match
Returns: HtmlNode list
|
|
Full Usage:
HtmlDocumentExtensions.Elements(doc)
Parameters:
HtmlDocument
-
The given document
Returns: HtmlNode list
|
|
|
|
Full Usage:
HtmlDocumentExtensions.TryGetBody(doc)
Parameters:
HtmlDocument
Returns: HtmlNode option
|
|
Full Usage:
HtmlDocumentExtensions.TryGetHtml(doc)
Parameters:
HtmlDocument
Returns: HtmlNode option
|