Interface IParsedElement
Interface for a parsed element.
Namespace: Fibula.Parsing.Contracts.Abstractions
Assembly: Fibula.Parsing.Contracts.dll
Syntax
public interface IParsedElement
Properties
| Improve this Doc View SourceAttributes
Gets the attributes of the element.
Declaration
IList<IParsedAttribute> Attributes { get; }
Property Value
Type | Description |
---|---|
System.Collections.Generic.IList<IParsedAttribute> |
Id
Gets the id of the element.
Declaration
int Id { get; }
Property Value
Type | Description |
---|---|
System.Int32 |
IsFlag
Gets a value indicating whether this element is a flag.
Declaration
bool IsFlag { get; }
Property Value
Type | Description |
---|---|
System.Boolean |