Click or drag to resize

TripleCollection Class

Basic Triple Collection which is not indexed.
Inheritance Hierarchy

Namespace:  VDS.RDF
Assembly:  dotNetRDF (in dotNetRDF.dll) Version:
Syntax
public class TripleCollection : BaseTripleCollection, 
	IEnumerable<Triple>, IEnumerable

The TripleCollection type exposes the following members.

Constructors
  NameDescription
Public methodTripleCollection
Creates a new Triple Collection.
Top
Properties
Methods
  NameDescription
Protected methodAdd
Adds a Triple to the Collection.
(Overrides BaseTripleCollectionAdd(Triple).)
Public methodContains
Determines whether a given Triple is in the Triple Collection.
(Overrides BaseTripleCollectionContains(Triple).)
Protected methodDelete
Deletes a Triple from the Colleciton.
(Overrides BaseTripleCollectionDelete(Triple).)
Public methodDispose
Disposes of a Triple Collection.
(Overrides BaseTripleCollectionDispose.)
Public methodEquals
Determines whether the specified object is equal to the current object.
(Inherited from Object.)
Protected methodFinalize
Allows an object to try to free resources and perform other cleanup operations before it is reclaimed by garbage collection.
(Inherited from Object.)
Public methodGetEnumerator
Gets the Enumerator for the Collection.
(Overrides BaseTripleCollectionGetEnumerator.)
Public methodGetHashCode
Serves as the default hash function.
(Inherited from Object.)
Public methodGetType
Gets the Type of the current instance.
(Inherited from Object.)
Protected methodMemberwiseClone
Creates a shallow copy of the current Object.
(Inherited from Object.)
Protected methodRaiseTripleAdded
Helper method for raising the Triple Added event.
(Inherited from BaseTripleCollection.)
Protected methodRaiseTripleRemoved
Helper method for raising the Triple Removed event.
(Inherited from BaseTripleCollection.)
Public methodToString
Returns a string that represents the current object.
(Inherited from Object.)
Public methodWithObject
Gets all the Triples with the given Object.
(Inherited from BaseTripleCollection.)
Public methodWithPredicate
Gets all the Triples with the given Predicate.
(Inherited from BaseTripleCollection.)
Public methodWithPredicateObject
Gets all the Triples with the given Predicate Object pair.
(Inherited from BaseTripleCollection.)
Public methodWithSubject
Gets all the Triples with the given Subject.
(Inherited from BaseTripleCollection.)
Public methodWithSubjectObject
Gets all the Triples with the given Subject Object pair.
(Inherited from BaseTripleCollection.)
Public methodWithSubjectPredicate
Gets all the Triples with the given Subject Predicate pair.
(Inherited from BaseTripleCollection.)
Top
Events
  NameDescription
Public eventTripleAdded
Event which occurs when a Triple is added to the Collection
(Inherited from BaseTripleCollection.)
Public eventTripleRemoved
Event which occurs when a Triple is removed from the Collection
(Inherited from BaseTripleCollection.)
Top
Fields
  NameDescription
Protected field_triples
Underlying Storage of the Triple Collection.
Top
Extension Methods
  NameDescription
Public Extension MethodIsDisjointTriple
Determines whether the contents of two enumerables are disjoint.
(Defined by Extensions.)
Public Extension MethodWithObject
Gets the Subset of Triples from an existing Enumerable that have a given Object.
(Defined by Extensions.)
Public Extension MethodWithPredicate
Gets the Subset of Triples from an existing Enumerable that have a given Predicate.
(Defined by Extensions.)
Public Extension MethodWithSubject
Gets the Subset of Triples from an existing Enumerable that have a given Subject.
(Defined by Extensions.)
Top
See Also