Class TriplePersistenceAction
Represents a Triple that is queued for persistence (either insertion/deletion).
Inheritance
System.Object
TriplePersistenceAction
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 TriplePersistenceAction
Constructors
| Improve this Doc View SourceTriplePersistenceAction(Triple, IRefNode, bool)
Creates a new Triple Persistence Action (an insertion/deletion).
Declaration
public TriplePersistenceAction(Triple t, IRefNode graphName, bool toDelete)
Parameters
| Type | Name | Description |
|---|---|---|
| Triple | t | Triple to persist. |
| IRefNode | graphName | The name of the modified graph. |
| System.Boolean | toDelete | Whether the Triple is to be deleted. |
TriplePersistenceAction(Triple, IRefNode)
Creates a new Triple Persistence Action (an insertion).
Declaration
public TriplePersistenceAction(Triple t, IRefNode graphName)
Parameters
| Type | Name | Description |
|---|---|---|
| Triple | t | Triple to persist. |
| IRefNode | graphName | The name of the modified graph. |
Properties
| Improve this Doc View SourceGraph
Gets the name of the graph modified by this action.
Declaration
public IRefNode Graph { get; }
Property Value
| Type | Description |
|---|---|
| IRefNode |
IsDelete
Gets whether the action is a Delete Action.
Declaration
public bool IsDelete { get; }
Property Value
| Type | Description |
|---|---|
| System.Boolean |
Triple
Gets the Triple to persist.
Declaration
public Triple Triple { get; }
Property Value
| Type | Description |
|---|---|
| Triple |