Show / Hide Table of Contents

Class TriplePersistenceAction

Represents a Triple that is queued for persistence (either insertion/deletion).

Inheritance
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

| Edit this page View Source

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.

| Edit this page View Source

TriplePersistenceAction(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.

bool toDelete

Whether the Triple is to be deleted.

Properties

| Edit this page View Source

Graph

Gets the name of the graph modified by this action.

Declaration
public IRefNode Graph { get; }
Property Value
Type Description
IRefNode
| Edit this page View Source

IsDelete

Gets whether the action is a Delete Action.

Declaration
public bool IsDelete { get; }
Property Value
Type Description
bool
| Edit this page View Source

Triple

Gets the Triple to persist.

Declaration
public Triple Triple { get; }
Property Value
Type Description
Triple

Extension Methods

Extensions.ToSafeString(object)
Extensions.AsEnumerable<T>(T)
  • Edit this page
  • View Source
In this article
  • Constructors
    • TriplePersistenceAction(Triple, IRefNode)
    • TriplePersistenceAction(Triple, IRefNode, bool)
  • Properties
    • Graph
    • IsDelete
    • Triple
  • Extension Methods
Back to top Generated by DocFX