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
파일 보기 프로젝트 열기: hazzik/Rhino.Net

공개 메소드들

메소드 설명
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