Show / Hide Table of Contents

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

| Edit this page View Source

this[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
string name

Name of the Property.

Property Value
Type Description
object

Methods

| Edit this page View Source

HasProperty(string)

A Method which will indicate whether the Context contains some arbitrary property.

Declaration
bool HasProperty(string name)
Parameters
Type Name Description
string name
Returns
Type Description
bool

Extension Methods

Extensions.ToSafeString(object)
Extensions.AsEnumerable<T>(T)
  • Edit this page
  • View Source
In this article
  • Properties
    • this[string]
  • Methods
    • HasProperty(string)
  • Extension Methods
Back to top Generated by DocFX