Class BasicTripleContext
Class which implements a very basic Triple Context.
Implements
Inherited Members
object.Equals(object)
object.Equals(object, object)
object.GetHashCode()
object.GetType()
object.MemberwiseClone()
object.ReferenceEquals(object, object)
object.ToString()
Namespace: VDS.RDF
Assembly: dotNetRdf.dll
Syntax
public class BasicTripleContext : ITripleContext
Remarks
The Name Value collection is represented internally as a Dictionary.
Constructors
| Improve this Doc View SourceBasicTripleContext()
Creates a new Basic Triple Context without a Source.
Declaration
public BasicTripleContext()
Remarks
The Name Value collection is represented internally as a Dictionary.
Properties
| Improve this Doc View Sourcethis[string]
Gets/Sets the value of a Property.
Declaration
public object this[string name] { get; set; }
Parameters
Type | Name | Description |
---|---|---|
string | name | Name of the Property. |
Property Value
Type | Description |
---|---|
System.Object |
Remarks
The Name Value collection is represented internally as a Dictionary.
Methods
| Improve this Doc View SourceHasProperty(string)
Checks whether a given property is defined in this Context object.
Declaration
public bool HasProperty(string name)
Parameters
Type | Name | Description |
---|---|---|
string | name | Name of the Property. |
Returns
Type | Description |
---|---|
System.Boolean |
Remarks
The Name Value collection is represented internally as a Dictionary.