C# Class CsQuery.Output.FormatDefault.NodeStackElement

An element that captures the state of a element on the output stack.
Mostrar archivo Open project: prepare/HTML-Renderer

Public Properties

Property Type Description
Element IDomObject
IsClose bool
IsRaw bool

Public Methods

Method Description
NodeStackElement ( IDomObject element, bool isRaw, bool isClose ) : System

Constructor.

Method Details

NodeStackElement() public method

Constructor.
public NodeStackElement ( IDomObject element, bool isRaw, bool isClose ) : System
element IDomObject /// The element. ///
isRaw bool /// true if this object is raw. ///
isClose bool /// true if this object is close. ///
return System

Property Details

Element public_oe property

The element.
public IDomObject Element
return IDomObject

IsClose public_oe property

The is a closing tag only.
public bool IsClose
return bool

IsRaw public_oe property

The text node should be output as raw (un-encoded) text.
public bool IsRaw
return bool