Class BaseGraph
Abstract Base Implementation of the
IGraph interface.
Inheritance
System.Object
BaseGraph
Implements
System.IDisposable
System.Xml.Serialization.IXmlSerializable
System.Runtime.Serialization.ISerializable
Inherited Members
System.Object.Equals(System.Object, System.Object)
System.Object.GetHashCode()
System.Object.GetType()
System.Object.MemberwiseClone()
System.Object.ReferenceEquals(System.Object, System.Object)
System.Object.ToString()
Assembly: dotNetRDF.dll
Syntax
[Serializable]
public abstract class BaseGraph : IGraph, INodeFactory, IDisposable, IXmlSerializable, ISerializable
Constructors
|
Improve this Doc
View Source
BaseGraph()
Declaration
|
Improve this Doc
View Source
BaseGraph(SerializationInfo, StreamingContext)
Creates a Graph from the given Serialization Information.
Declaration
protected BaseGraph(SerializationInfo info, StreamingContext context)
Parameters
Type |
Name |
Description |
System.Runtime.Serialization.SerializationInfo |
info |
Serialization Information. |
System.Runtime.Serialization.StreamingContext |
context |
Streaming Context. |
|
Improve this Doc
View Source
BaseGraph(BaseTripleCollection)
Creates a new Base Graph using the given Triple Collection.
Declaration
protected BaseGraph(BaseTripleCollection tripleCollection)
Parameters
Fields
|
Improve this Doc
View Source
_baseuri
Base Uri of the Graph.
Declaration
Field Value
Type |
Description |
System.Uri |
|
|
Improve this Doc
View Source
_bnodemapper
Blank Node ID Mapper.
Declaration
protected BlankNodeMapper _bnodemapper
Field Value
|
Improve this Doc
View Source
_nsmapper
Namespace Mapper.
Declaration
protected NamespaceMapper _nsmapper
Field Value
|
Improve this Doc
View Source
_triples
Collection of Triples in the Graph.
Declaration
protected BaseTripleCollection _triples
Field Value
Properties
|
Improve this Doc
View Source
AllNodes
Gets the unique Subject, Predicate and Object nodes of the Graph.
Declaration
public virtual IEnumerable<INode> AllNodes { get; }
Property Value
Type |
Description |
System.Collections.Generic.IEnumerable<INode> |
|
|
Improve this Doc
View Source
BaseUri
Gets the current Base Uri for the Graph.
Declaration
public virtual Uri BaseUri { get; set; }
Property Value
Type |
Description |
System.Uri |
|
|
Improve this Doc
View Source
IsEmpty
Gets whether a Graph is Empty ie. Contains No Triples or Nodes.
Declaration
public virtual bool IsEmpty { get; }
Property Value
Type |
Description |
System.Boolean |
|
|
Improve this Doc
View Source
NamespaceMap
Gets the Namespace Mapper for this Graph which contains all in use Namespace Prefixes and their URIs.
Declaration
public virtual INamespaceMapper NamespaceMap { get; }
Property Value
|
Improve this Doc
View Source
Nodes
Gets the unique Subject and Object nodes of the Graph.
Declaration
public virtual IEnumerable<INode> Nodes { get; }
Property Value
Type |
Description |
System.Collections.Generic.IEnumerable<INode> |
|
|
Improve this Doc
View Source
Triples
Gets the set of Triples described in this Graph.
Declaration
public virtual BaseTripleCollection Triples { get; }
Property Value
Methods
|
Improve this Doc
View Source
Assert(IEnumerable<Triple>)
Asserts a List of Triples in the graph.
Declaration
public abstract bool Assert(IEnumerable<Triple> ts)
Parameters
Type |
Name |
Description |
System.Collections.Generic.IEnumerable<Triple> |
ts |
List of Triples in the form of an IEnumerable. |
Returns
Type |
Description |
System.Boolean |
|
|
Improve this Doc
View Source
Assert(Triple)
Asserts a Triple in the Graph.
Declaration
public abstract bool Assert(Triple t)
Parameters
Type |
Name |
Description |
Triple |
t |
The Triple to add to the Graph. |
Returns
Type |
Description |
System.Boolean |
|
|
Improve this Doc
View Source
AttachEventHandlers(BaseTripleCollection)
Helper method for attaching the necessary event Handlers to a Triple Collection.
Declaration
protected void AttachEventHandlers(BaseTripleCollection tripleCollection)
Parameters
Remarks
|
Improve this Doc
View Source
Clear()
Clears all Triples from the Graph.
Declaration
public virtual void Clear()
|
Improve this Doc
View Source
ContainsTriple(Triple)
Gets whether a given Triple exists in this Graph.
Declaration
public virtual bool ContainsTriple(Triple t)
Parameters
Type |
Name |
Description |
Triple |
t |
Triple to test. |
Returns
Type |
Description |
System.Boolean |
|
|
Improve this Doc
View Source
CreateBlankNode()
Creates a New Blank Node with an auto-generated Blank Node ID.
Declaration
public virtual IBlankNode CreateBlankNode()
Returns
|
Improve this Doc
View Source
CreateBlankNode(String)
Creates a New Blank Node with a user-defined Blank Node ID.
Declaration
public virtual IBlankNode CreateBlankNode(string nodeId)
Parameters
Type |
Name |
Description |
System.String |
nodeId |
Node ID to use. |
Returns
|
Improve this Doc
View Source
CreateGraphLiteralNode()
Creates a new Graph Literal Node with its value being an Empty Subgraph.
Declaration
public virtual IGraphLiteralNode CreateGraphLiteralNode()
Returns
|
Improve this Doc
View Source
CreateGraphLiteralNode(IGraph)
Creates a new Graph Literal Node with its value being the given Subgraph.
Declaration
public virtual IGraphLiteralNode CreateGraphLiteralNode(IGraph subgraph)
Parameters
Type |
Name |
Description |
IGraph |
subgraph |
Subgraph this Node represents. |
Returns
|
Improve this Doc
View Source
CreateLiteralNode(String)
Creates a New Literal Node with the given Value.
Declaration
public virtual ILiteralNode CreateLiteralNode(string literal)
Parameters
Type |
Name |
Description |
System.String |
literal |
String value of the Literal. |
Returns
|
Improve this Doc
View Source
CreateLiteralNode(String, String)
Creates a New Literal Node with the given Value and Language Specifier.
Declaration
public virtual ILiteralNode CreateLiteralNode(string literal, string langspec)
Parameters
Type |
Name |
Description |
System.String |
literal |
String value of the Literal. |
System.String |
langspec |
Language Specifier of the Literal. |
Returns
|
Improve this Doc
View Source
CreateLiteralNode(String, Uri)
Creates a new Literal Node with the given Value and Data Type.
Declaration
public virtual ILiteralNode CreateLiteralNode(string literal, Uri datatype)
Parameters
Type |
Name |
Description |
System.String |
literal |
String value of the Literal. |
System.Uri |
datatype |
URI of the Data Type. |
Returns
|
Improve this Doc
View Source
CreateUriNode()
Creates a new URI Node that refers to the Base Uri of the Graph.
Declaration
public virtual IUriNode CreateUriNode()
Returns
|
Improve this Doc
View Source
CreateUriNode(String)
Creates a new URI Node with the given QName.
Declaration
public virtual IUriNode CreateUriNode(string qname)
Parameters
Type |
Name |
Description |
System.String |
qname |
QName for the Node. |
Returns
|
Improve this Doc
View Source
CreateUriNode(Uri)
Creates a new URI Node with the given URI.
Declaration
public virtual IUriNode CreateUriNode(Uri uri)
Parameters
Type |
Name |
Description |
System.Uri |
uri |
URI for the Node. |
Returns
|
Improve this Doc
View Source
CreateVariableNode(String)
Creates a new Variable Node.
Declaration
public virtual IVariableNode CreateVariableNode(string varname)
Parameters
Type |
Name |
Description |
System.String |
varname |
Variable Name. |
Returns
|
Improve this Doc
View Source
DetachEventHandlers(BaseTripleCollection)
Helper method for detaching the necessary event Handlers from a Triple Collection.
Declaration
protected void DetachEventHandlers(BaseTripleCollection tripleCollection)
Parameters
Remarks
|
Improve this Doc
View Source
Difference(IGraph)
Computes the Difference between this Graph the given Graph.
Declaration
public GraphDiffReport Difference(IGraph g)
Parameters
Type |
Name |
Description |
IGraph |
g |
Graph. |
Returns
|
Improve this Doc
View Source
Dispose()
Disposes of a Graph.
Declaration
public virtual void Dispose()
|
Improve this Doc
View Source
Equals(Object)
Determines whether a Graph is equal to another Object.
Declaration
public override bool Equals(object obj)
Parameters
Type |
Name |
Description |
System.Object |
obj |
Object to test. |
Returns
Type |
Description |
System.Boolean |
|
Overrides
System.Object.Equals(System.Object)
|
Improve this Doc
View Source
Equals(IGraph, out Dictionary<INode, INode>)
Determines whether this Graph is equal to the given Graph.
Declaration
public virtual bool Equals(IGraph g, out Dictionary<INode, INode> mapping)
Parameters
Type |
Name |
Description |
IGraph |
g |
Graph to test for equality. |
System.Collections.Generic.Dictionary<INode, INode> |
mapping |
Mapping of Blank Nodes iff the Graphs are equal and contain some Blank Nodes. |
Returns
Type |
Description |
System.Boolean |
|
|
Improve this Doc
View Source
GetBlankNode(String)
Returns the Blank Node with the given Identifier.
Declaration
public abstract IBlankNode GetBlankNode(string nodeId)
Parameters
Type |
Name |
Description |
System.String |
nodeId |
The Identifier of the Blank Node to select. |
Returns
Type |
Description |
IBlankNode |
Either the Blank Node or null if no Node with the given Identifier exists. |
|
Improve this Doc
View Source
GetLiteralNode(String)
Returns the LiteralNode with the given Value if it exists.
Declaration
public abstract ILiteralNode GetLiteralNode(string literal)
Parameters
Type |
Name |
Description |
System.String |
literal |
The literal value of the Node to select. |
Returns
Type |
Description |
ILiteralNode |
Either the LiteralNode Or null if no Node with the given Value exists. |
|
Improve this Doc
View Source
GetLiteralNode(String, String)
Returns the LiteralNode with the given Value in the given Language if it exists.
Declaration
public abstract ILiteralNode GetLiteralNode(string literal, string langspec)
Parameters
Type |
Name |
Description |
System.String |
literal |
The literal value of the Node to select. |
System.String |
langspec |
The Language Specifier for the Node to select. |
Returns
Type |
Description |
ILiteralNode |
Either the LiteralNode Or null if no Node with the given Value and Language Specifier exists. |
|
Improve this Doc
View Source
GetLiteralNode(String, Uri)
Returns the LiteralNode with the given Value and given Data Type if it exists.
Declaration
public abstract ILiteralNode GetLiteralNode(string literal, Uri datatype)
Parameters
Type |
Name |
Description |
System.String |
literal |
The literal value of the Node to select. |
System.Uri |
datatype |
The Uri for the Data Type of the Literal to select. |
Returns
Type |
Description |
ILiteralNode |
Either the LiteralNode Or null if no Node with the given Value and Data Type exists. |
|
Improve this Doc
View Source
GetNextBlankNodeID()
Creates a new unused Blank Node ID and returns it.
Declaration
public virtual string GetNextBlankNodeID()
Returns
Type |
Description |
System.String |
|
|
Improve this Doc
View Source
GetObjectData(SerializationInfo, StreamingContext)
Gets the Serialization Information for serializing a Graph.
Declaration
public void GetObjectData(SerializationInfo info, StreamingContext context)
Parameters
Type |
Name |
Description |
System.Runtime.Serialization.SerializationInfo |
info |
Serialization Information. |
System.Runtime.Serialization.StreamingContext |
context |
Streaming Context. |
|
Improve this Doc
View Source
GetSchema()
Gets the Schema for XML Serialization.
Declaration
public XmlSchema GetSchema()
Returns
Type |
Description |
System.Xml.Schema.XmlSchema |
|
|
Improve this Doc
View Source
GetTriples(Uri)
Gets all the Triples involving the given Uri.
Declaration
public abstract IEnumerable<Triple> GetTriples(Uri uri)
Parameters
Type |
Name |
Description |
System.Uri |
uri |
The Uri to find Triples involving. |
Returns
Type |
Description |
System.Collections.Generic.IEnumerable<Triple> |
Zero/More Triples. |
|
Improve this Doc
View Source
GetTriples(INode)
Gets all the Triples involving the given Node.
Declaration
public abstract IEnumerable<Triple> GetTriples(INode n)
Parameters
Type |
Name |
Description |
INode |
n |
The Node to find Triples involving. |
Returns
Type |
Description |
System.Collections.Generic.IEnumerable<Triple> |
Zero/More Triples. |
|
Improve this Doc
View Source
GetTriplesWithObject(Uri)
Gets all the Triples with the given Uri as the Object.
Declaration
public abstract IEnumerable<Triple> GetTriplesWithObject(Uri u)
Parameters
Type |
Name |
Description |
System.Uri |
u |
The Uri to find Triples with it as the Object. |
Returns
Type |
Description |
System.Collections.Generic.IEnumerable<Triple> |
Zero/More Triples. |
|
Improve this Doc
View Source
GetTriplesWithObject(INode)
Gets all the Triples with the given Node as the Object.
Declaration
public abstract IEnumerable<Triple> GetTriplesWithObject(INode n)
Parameters
Type |
Name |
Description |
INode |
n |
The Node to find Triples with it as the Object. |
Returns
Type |
Description |
System.Collections.Generic.IEnumerable<Triple> |
|
|
Improve this Doc
View Source
GetTriplesWithPredicate(Uri)
Gets all the Triples with the given Uri as the Predicate.
Declaration
public abstract IEnumerable<Triple> GetTriplesWithPredicate(Uri u)
Parameters
Type |
Name |
Description |
System.Uri |
u |
The Uri to find Triples with it as the Predicate. |
Returns
Type |
Description |
System.Collections.Generic.IEnumerable<Triple> |
Zero/More Triples. |
|
Improve this Doc
View Source
GetTriplesWithPredicate(INode)
Gets all the Triples with the given Node as the Predicate.
Declaration
public abstract IEnumerable<Triple> GetTriplesWithPredicate(INode n)
Parameters
Type |
Name |
Description |
INode |
n |
The Node to find Triples with it as the Predicate. |
Returns
Type |
Description |
System.Collections.Generic.IEnumerable<Triple> |
|
|
Improve this Doc
View Source
GetTriplesWithPredicateObject(INode, INode)
Selects all Triples with the given Predicate and Object.
Declaration
public abstract IEnumerable<Triple> GetTriplesWithPredicateObject(INode pred, INode obj)
Parameters
Type |
Name |
Description |
INode |
pred |
Predicate. |
INode |
obj |
Object. |
Returns
Type |
Description |
System.Collections.Generic.IEnumerable<Triple> |
|
|
Improve this Doc
View Source
GetTriplesWithSubject(Uri)
Gets all the Triples with the given Uri as the Subject.
Declaration
public abstract IEnumerable<Triple> GetTriplesWithSubject(Uri u)
Parameters
Type |
Name |
Description |
System.Uri |
u |
The Uri to find Triples with it as the Subject. |
Returns
Type |
Description |
System.Collections.Generic.IEnumerable<Triple> |
Zero/More Triples. |
|
Improve this Doc
View Source
GetTriplesWithSubject(INode)
Gets all the Triples with the given Node as the Subject.
Declaration
public abstract IEnumerable<Triple> GetTriplesWithSubject(INode n)
Parameters
Type |
Name |
Description |
INode |
n |
The Node to find Triples with it as the Subject. |
Returns
Type |
Description |
System.Collections.Generic.IEnumerable<Triple> |
Zero/More Triples. |
|
Improve this Doc
View Source
GetTriplesWithSubjectObject(INode, INode)
Selects all Triples with the given Subject and Object.
Declaration
public abstract IEnumerable<Triple> GetTriplesWithSubjectObject(INode subj, INode obj)
Parameters
Type |
Name |
Description |
INode |
subj |
Subject. |
INode |
obj |
Object. |
Returns
Type |
Description |
System.Collections.Generic.IEnumerable<Triple> |
|
|
Improve this Doc
View Source
GetTriplesWithSubjectPredicate(INode, INode)
Selects all Triples with the given Subject and Predicate.
Declaration
public abstract IEnumerable<Triple> GetTriplesWithSubjectPredicate(INode subj, INode pred)
Parameters
Type |
Name |
Description |
INode |
subj |
Subject. |
INode |
pred |
Predicate. |
Returns
Type |
Description |
System.Collections.Generic.IEnumerable<Triple> |
|
|
Improve this Doc
View Source
GetUriNode(String)
Returns the UriNode with the given QName if it exists.
Declaration
public abstract IUriNode GetUriNode(string qname)
Parameters
Type |
Name |
Description |
System.String |
qname |
The QName of the Node to select. |
Returns
|
Improve this Doc
View Source
GetUriNode(Uri)
Returns the UriNode with the given Uri if it exists.
Declaration
public abstract IUriNode GetUriNode(Uri uri)
Parameters
Type |
Name |
Description |
System.Uri |
uri |
The Uri of the Node to select. |
Returns
Type |
Description |
IUriNode |
Either the UriNode Or null if no Node with the given Uri exists. |
|
Improve this Doc
View Source
HasSubGraph(IGraph)
Checks whether this Graph has the given Graph as a sub-graph.
Declaration
public bool HasSubGraph(IGraph g)
Parameters
Type |
Name |
Description |
IGraph |
g |
Graph. |
Returns
Type |
Description |
System.Boolean |
|
|
Improve this Doc
View Source
HasSubGraph(IGraph, out Dictionary<INode, INode>)
Checks whether this Graph has the given Graph as a sub-graph.
Declaration
public bool HasSubGraph(IGraph g, out Dictionary<INode, INode> mapping)
Parameters
Type |
Name |
Description |
IGraph |
g |
Graph. |
System.Collections.Generic.Dictionary<INode, INode> |
mapping |
Mapping of Blank Nodes. |
Returns
Type |
Description |
System.Boolean |
|
|
Improve this Doc
View Source
IsSubGraphOf(IGraph)
Checks whether this Graph is a sub-graph of the given Graph.
Declaration
public bool IsSubGraphOf(IGraph g)
Parameters
Type |
Name |
Description |
IGraph |
g |
Graph. |
Returns
Type |
Description |
System.Boolean |
|
|
Improve this Doc
View Source
IsSubGraphOf(IGraph, out Dictionary<INode, INode>)
Checks whether this Graph is a sub-graph of the given Graph.
Declaration
public bool IsSubGraphOf(IGraph g, out Dictionary<INode, INode> mapping)
Parameters
Type |
Name |
Description |
IGraph |
g |
Graph. |
System.Collections.Generic.Dictionary<INode, INode> |
mapping |
Mapping of Blank Nodes. |
Returns
Type |
Description |
System.Boolean |
|
|
Improve this Doc
View Source
Merge(IGraph)
Merges another Graph into the current Graph.
Declaration
public virtual void Merge(IGraph g)
Parameters
Type |
Name |
Description |
IGraph |
g |
Graph to Merge into this Graph. |
|
Improve this Doc
View Source
Merge(IGraph, Boolean)
Merges another Graph into the current Graph.
Declaration
public virtual void Merge(IGraph g, bool keepOriginalGraphUri)
Parameters
Type |
Name |
Description |
IGraph |
g |
Graph to Merge into this Graph. |
System.Boolean |
keepOriginalGraphUri |
Indicates that the Merge should preserve the Graph URIs of Nodes so they refer to the Graph they originated in. |
|
Improve this Doc
View Source
OnTripleAsserted(Object, TripleEventArgs)
Event Handler which handles the
TripleAdded event from the underlying Triple Collection by raising the Graph's
TripleAsserted event.
Declaration
protected virtual void OnTripleAsserted(object sender, TripleEventArgs args)
Parameters
Type |
Name |
Description |
System.Object |
sender |
Sender. |
TripleEventArgs |
args |
Triple Event Arguments. |
|
Improve this Doc
View Source
OnTripleRetracted(Object, TripleEventArgs)
Declaration
protected virtual void OnTripleRetracted(object sender, TripleEventArgs args)
Parameters
Type |
Name |
Description |
System.Object |
sender |
Sender. |
TripleEventArgs |
args |
Triple Event Arguments. |
|
Improve this Doc
View Source
RaiseCleared()
Helper method for raising the
Cleared event.
Declaration
protected void RaiseCleared()
|
Improve this Doc
View Source
RaiseClearRequested()
Helper method for raising the
ClearRequested event and returning whether any of the Event Handlers cancelled the operation.
Declaration
protected bool RaiseClearRequested()
Returns
Type |
Description |
System.Boolean |
True if the operation can continue, false if it should be aborted. |
|
Improve this Doc
View Source
RaiseGraphChanged()
Helper method for raising the
Changed event.
Declaration
protected void RaiseGraphChanged()
|
Improve this Doc
View Source
RaiseGraphChanged(TripleEventArgs)
Helper method for raising the
Changed event.
Declaration
protected void RaiseGraphChanged(TripleEventArgs args)
Parameters
|
Improve this Doc
View Source
RaiseMerged()
Helper method for raising the
Merged event.
Declaration
protected void RaiseMerged()
|
Improve this Doc
View Source
RaiseMergeRequested()
Helper method for raising the
MergeRequested event and returning whether any of the Event Handlers cancelled the operation.
Declaration
protected bool RaiseMergeRequested()
Returns
Type |
Description |
System.Boolean |
True if the operation can continue, false if it should be aborted. |
|
Improve this Doc
View Source
RaiseTripleAsserted(Triple)
Declaration
protected void RaiseTripleAsserted(Triple t)
Parameters
Type |
Name |
Description |
Triple |
t |
Triple. |
|
Improve this Doc
View Source
RaiseTripleAsserted(TripleEventArgs)
Declaration
protected void RaiseTripleAsserted(TripleEventArgs args)
Parameters
|
Improve this Doc
View Source
RaiseTripleRetracted(Triple)
Declaration
protected void RaiseTripleRetracted(Triple t)
Parameters
Type |
Name |
Description |
Triple |
t |
Triple. |
|
Improve this Doc
View Source
RaiseTripleRetracted(TripleEventArgs)
Declaration
protected void RaiseTripleRetracted(TripleEventArgs args)
Parameters
|
Improve this Doc
View Source
ReadXml(XmlReader)
Reads the data for XML deserialization.
Declaration
public void ReadXml(XmlReader reader)
Parameters
Type |
Name |
Description |
System.Xml.XmlReader |
reader |
XML Reader. |
|
Improve this Doc
View Source
ResolveQName(String)
Helper function for Resolving QNames to URIs.
Declaration
public virtual Uri ResolveQName(string qname)
Parameters
Type |
Name |
Description |
System.String |
qname |
QName to resolve to a Uri. |
Returns
Type |
Description |
System.Uri |
|
|
Improve this Doc
View Source
Retract(IEnumerable<Triple>)
Retracts a enumeration of Triples from the graph.
Declaration
public abstract bool Retract(IEnumerable<Triple> ts)
Parameters
Type |
Name |
Description |
System.Collections.Generic.IEnumerable<Triple> |
ts |
Enumeration of Triples to retract. |
Returns
Type |
Description |
System.Boolean |
|
|
Improve this Doc
View Source
Retract(Triple)
Retracts a Triple from the Graph.
Declaration
public abstract bool Retract(Triple t)
Parameters
Type |
Name |
Description |
Triple |
t |
Triple to Retract. |
Returns
Type |
Description |
System.Boolean |
|
|
Improve this Doc
View Source
WriteXml(XmlWriter)
Writes the data for XML serialization.
Declaration
public void WriteXml(XmlWriter writer)
Parameters
Type |
Name |
Description |
System.Xml.XmlWriter |
writer |
XML Writer. |
Events
|
Improve this Doc
View Source
Changed
Event which is raised when the Graph contents change
Declaration
public event GraphEventHandler Changed
Event Type
|
Improve this Doc
View Source
Cleared
Event which is raised after the Graph is cleared of its contents
Declaration
public event GraphEventHandler Cleared
Event Type
|
Improve this Doc
View Source
ClearRequested
Event which is raised just before the Graph is cleared of its contents
Declaration
public event CancellableGraphEventHandler ClearRequested
Event Type
|
Improve this Doc
View Source
Merged
Event which is raised when a Merge operation is completed on the Graph
Declaration
public event GraphEventHandler Merged
Event Type
|
Improve this Doc
View Source
MergeRequested
Event which is raised when a Merge operation is requested on the Graph
Declaration
public event CancellableGraphEventHandler MergeRequested
Event Type
|
Improve this Doc
View Source
TripleAsserted
Event which is raised when a Triple is asserted in the Graph
Declaration
public event TripleEventHandler TripleAsserted
Event Type
|
Improve this Doc
View Source
TripleRetracted
Event which is raised when a Triple is retracted from the Graph
Declaration
public event TripleEventHandler TripleRetracted
Event Type
Implements
System.IDisposable
System.Xml.Serialization.IXmlSerializable
System.Runtime.Serialization.ISerializable
Extension Methods