C# Class EmberLib.Glow.GlowNodeBase

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

Public Methods

Method Description
CompliesWithSchema ( string schemaIdentifier ) : bool

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

Protected Methods

Method 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 method

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.
return bool

GlowNodeBase() protected method

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

ValidateAfterDecodeOverride() protected method

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.
return bool