C# Class AspNetEdit.Editor.Persistence.ParsingObject

Mostra file Open project: mono/aspeditor Class Usage Examples

Public Methods

Method Description
AddText ( string text ) : void

Adds text into document. Default implementation passes it up the tree.

AllowWhitespace ( ) : bool
CloseObject ( string closingTagText ) : ParsingObject
CreateChildParsingObject ( ILocation location, string tagid, TagAttributes attributes ) : ParsingObject

Creates a ParsingObject as a child of this one, and returns it.

Protected Methods

Method Description
AddControl ( object control ) : void

Adds control to collection. Default implementation passes it up the tree towards RootParsingObject.

CheckOpen ( ) : void
ParsingObject ( string tagid, ParsingObject parent ) : System

Method Details

AddControl() protected method

Adds control to collection. Default implementation passes it up the tree towards RootParsingObject.
protected AddControl ( object control ) : void
control object
return void

AddText() public method

Adds text into document. Default implementation passes it up the tree.
public AddText ( string text ) : void
text string
return void

AllowWhitespace() public method

public AllowWhitespace ( ) : bool
return bool

CheckOpen() protected method

protected CheckOpen ( ) : void
return void

CloseObject() public method

public CloseObject ( string closingTagText ) : ParsingObject
closingTagText string
return ParsingObject

CreateChildParsingObject() public method

Creates a ParsingObject as a child of this one, and returns it.
public CreateChildParsingObject ( ILocation location, string tagid, TagAttributes attributes ) : ParsingObject
location ILocation
tagid string
attributes TagAttributes
return ParsingObject

ParsingObject() protected method

protected ParsingObject ( string tagid, ParsingObject parent ) : System
tagid string
parent ParsingObject
return System