C# Класс CsQuery.Output.FormatDefault.NodeStackElement

An element that captures the state of a element on the output stack.
Показать файл Открыть проект

Открытые свойства

Свойство Тип Описание
Element IDomObject
IsClose bool
IsRaw bool

Открытые методы

Метод Описание
NodeStackElement ( IDomObject element, bool isRaw, bool isClose ) : System

Constructor.

Описание методов

NodeStackElement() публичный Метод

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. ///
Результат System

Описание свойств

Element публичное свойство

The element.
public IDomObject Element
Результат IDomObject

IsClose публичное свойство

The is a closing tag only.
public bool IsClose
Результат bool

IsRaw публичное свойство

The text node should be output as raw (un-encoded) text.
public bool IsRaw
Результат bool