C# Class EmberLib.Glow.GlowNodeBase

Base class for the EmberPlus-Glow.Node and EmberPlus-Glow.QualifiedNode types.
Inheritance: GlowContentElement
Afficher le fichier Open project: Lawo/ember-plus Class Usage Examples

Méthodes publiques

Méthode Description
CompliesWithSchema ( string schemaIdentifier ) : bool

Tests if the node complies with the schema with the passed schema identifier.

Méthodes protégées

Méthode Description
GlowNodeBase ( BerTag tag, uint type ) : System

Creates a new instance of GlowNodeBase.

ValidateAfterDecodeOverride ( string &message ) : bool

Override this in application-defined node types to provide validation. Called when a node has been decoded. Overriden to validate Identifier.

Method Details

CompliesWithSchema() public méthode

Tests if the node complies with the schema with the passed schema identifier.
public CompliesWithSchema ( string schemaIdentifier ) : bool
schemaIdentifier string The identifier of the schema to test for.
Résultat bool

GlowNodeBase() protected méthode

Creates a new instance of GlowNodeBase.
protected GlowNodeBase ( BerTag tag, uint type ) : System
tag BerTag
type uint
Résultat System

ValidateAfterDecodeOverride() protected méthode

Override this in application-defined node types to provide validation. Called when a node has been decoded. Overriden to validate Identifier.
protected ValidateAfterDecodeOverride ( string &message ) : bool
message string When returning false, set this to a string describing the kind of error.
Résultat bool