Header menu logo FSharp.Data

HtmlNode Type

Static members

Static member Description

HtmlNode.NewCData(content)

Full Usage: HtmlNode.NewCData(content)

Parameters:
    content : string - The actual content

Returns: HtmlNode

Creates a CData element

content : string

The actual content

Returns: HtmlNode

HtmlNode.NewComment(content)

Full Usage: HtmlNode.NewComment(content)

Parameters:
    content : string - The actual content

Returns: HtmlNode

Creates a comment element

content : string

The actual content

Returns: HtmlNode

HtmlNode.NewElement(name, attrs, children)

Full Usage: HtmlNode.NewElement(name, attrs, children)

Parameters:
    name : string - The name of the element
    attrs : (string * string) seq - The HtmlAttribute(s) of the element
    children : HtmlNode seq - The children elements of this element

Returns: HtmlNode

Creates an html element

name : string

The name of the element

attrs : (string * string) seq

The HtmlAttribute(s) of the element

children : HtmlNode seq

The children elements of this element

Returns: HtmlNode

HtmlNode.NewElement(name, children)

Full Usage: HtmlNode.NewElement(name, children)

Parameters:
    name : string - The name of the element
    children : HtmlNode seq - The children elements of this element

Returns: HtmlNode

Creates an html element

name : string

The name of the element

children : HtmlNode seq

The children elements of this element

Returns: HtmlNode

HtmlNode.NewElement(name, attrs)

Full Usage: HtmlNode.NewElement(name, attrs)

Parameters:
    name : string - The name of the element
    attrs : (string * string) seq - The HtmlAttribute(s) of the element

Returns: HtmlNode

Creates an html element

name : string

The name of the element

attrs : (string * string) seq

The HtmlAttribute(s) of the element

Returns: HtmlNode

HtmlNode.NewElement(name)

Full Usage: HtmlNode.NewElement(name)

Parameters:
    name : string - The name of the element

Returns: HtmlNode

Creates an html element

name : string

The name of the element

Returns: HtmlNode

HtmlNode.NewText(content)

Full Usage: HtmlNode.NewText(content)

Parameters:
    content : string - The actual content

Returns: HtmlNode

Creates a text content element

content : string

The actual content

Returns: HtmlNode

Type something to start searching.