C# Класс Rhino.Ast.XmlString

AST node for an XML-text-only component of an XML literal expression.
AST node for an XML-text-only component of an XML literal expression. This node differs from a StringLiteral in that it does not have quotes for delimiters.
Наследование: XmlFragment
Показать файл Открыть проект

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

Метод Описание
GetXml ( ) : string

Returns the xml string for this component.

Returns the xml string for this component. Note that it may not be well-formed XML; it is a fragment.

SetXml ( string s ) : void

Sets the string for this XML component.

Sets the string for this XML component. Sets the length of the component to the length of the passed string.

ToSource ( int depth ) : string
Visit ( NodeVisitor v ) : void

Visits this node.

Visits this node. There are no children to visit.

XmlString ( ) : Rhino.Ast
XmlString ( int pos ) : Rhino.Ast
XmlString ( int pos, string s ) : Rhino.Ast

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

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

Returns the xml string for this component.
Returns the xml string for this component. Note that it may not be well-formed XML; it is a fragment.
public GetXml ( ) : string
Результат string

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

Sets the string for this XML component.
Sets the string for this XML component. Sets the length of the component to the length of the passed string.
/// } if /// s /// is /// null ///
public SetXml ( string s ) : void
s string a string of xml text
Результат void

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

public ToSource ( int depth ) : string
depth int
Результат string

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

Visits this node.
Visits this node. There are no children to visit.
public Visit ( NodeVisitor v ) : void
v NodeVisitor
Результат void

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

public XmlString ( ) : Rhino.Ast
Результат Rhino.Ast

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

public XmlString ( int pos ) : Rhino.Ast
pos int
Результат Rhino.Ast

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

public XmlString ( int pos, string s ) : Rhino.Ast
pos int
s string
Результат Rhino.Ast