Interface ITripleContext
An Interface for classes which provide Context Information for Triples thus allowing you to create Quads with arbitrary extra information attached to Triples via your Context Objects.
Namespace: VDS.RDF
Assembly: dotNetRDF.dll
Syntax
public interface ITripleContext
Remarks
A Triple Context is simply a name-value pair collection of arbitrary data that can be attached to a Triple. Internal representation of this is left to the implementor.
Properties
| Improve this Doc View SourceItem[String]
A Property which exposes the arbitrary properties of the Context as an Key Based Index.
Declaration
object this[string name] { get; set; }
Parameters
Type | Name | Description |
---|---|---|
System.String | name | Name of the Property. |
Property Value
Type | Description |
---|---|
System.Object |
Methods
| Improve this Doc View SourceHasProperty(String)
A Method which will indicate whether the Context contains some arbitrary property.
Declaration
bool HasProperty(string name)
Parameters
Type | Name | Description |
---|---|---|
System.String | name |
Returns
Type | Description |
---|---|
System.Boolean |