C# Class AspNetEdit.Editor.Persistence.ParsingObject

Afficher le fichier Open project: mono/aspeditor Class Usage Examples

Méthodes publiques

Méthode 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.

Méthodes protégées

Méthode 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 méthode

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

AddText() public méthode

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

AllowWhitespace() public méthode

public AllowWhitespace ( ) : bool
Résultat bool

CheckOpen() protected méthode

protected CheckOpen ( ) : void
Résultat void

CloseObject() public méthode

public CloseObject ( string closingTagText ) : ParsingObject
closingTagText string
Résultat ParsingObject

CreateChildParsingObject() public méthode

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
Résultat ParsingObject

ParsingObject() protected méthode

protected ParsingObject ( string tagid, ParsingObject parent ) : System
tagid string
parent ParsingObject
Résultat System