Class BaseEvent
Abstract Base Class for IEvent implementations.
Implements
Inherited Members
System.Object.Equals(System.Object)
System.Object.Equals(System.Object, System.Object)
System.Object.GetHashCode()
System.Object.GetType()
System.Object.MemberwiseClone()
System.Object.ReferenceEquals(System.Object, System.Object)
System.Object.ToString()
Namespace: VDS.RDF.Parsing.Events
Assembly: dotNetRDF.dll
Syntax
public abstract class BaseEvent : IEvent
Constructors
| Improve this Doc View SourceBaseEvent(Int32)
Creates a new Event.
Declaration
public BaseEvent(int eventType)
Parameters
Type | Name | Description |
---|---|---|
System.Int32 | eventType | Event Type. |
BaseEvent(Int32, PositionInfo)
Creates a new Event.
Declaration
public BaseEvent(int eventType, PositionInfo info)
Parameters
Type | Name | Description |
---|---|---|
System.Int32 | eventType | Event Type. |
PositionInfo | info | Position Information. |
Properties
| Improve this Doc View SourceEventType
Gets the Type for this Event.
Declaration
public int EventType { get; }
Property Value
Type | Description |
---|---|
System.Int32 |
Position
Gets the Position Information (if any).
Declaration
public PositionInfo Position { get; }
Property Value
Type | Description |
---|---|
PositionInfo |
Remarks
Availability of Position Information depends on the how the source document was parsed.