Interface IRdfAEvent
Interface for RDFa events.
Assembly: dotNetRDF.dll
Syntax
public interface IRdfAEvent : IEvent
Properties
|
Improve this Doc
View Source
Attributes
Gets the attributes of the event i.e. the attributes of the source element.
Declaration
IEnumerable<KeyValuePair<string, string>> Attributes { get; }
Property Value
Type |
Description |
System.Collections.Generic.IEnumerable<System.Collections.Generic.KeyValuePair<System.String, System.String>> |
|
|
Improve this Doc
View Source
Item[String]
Gets the value of a specific attribute.
Declaration
string this[string name] { get; }
Parameters
Type |
Name |
Description |
System.String |
name |
Attribute Name. |
Property Value
Type |
Description |
System.String |
|
Methods
|
Improve this Doc
View Source
HasAttribute(String)
Gets whether the Event has a given attribute.
Declaration
bool HasAttribute(string name)
Parameters
Type |
Name |
Description |
System.String |
name |
Attribute Name. |
Returns
Type |
Description |
System.Boolean |
|
Extension Methods