Show / Hide Table of Contents

Class MoveCommand

Represents a SPARQL Update MOVE Command.

Inheritance
System.Object
SparqlUpdateCommand
BaseTransferCommand
MoveCommand
Inherited Members
BaseTransferCommand._silent
BaseTransferCommand.SourceUri
BaseTransferCommand.SourceGraphName
BaseTransferCommand.DestinationUri
BaseTransferCommand.DestinationGraphName
BaseTransferCommand.Silent
BaseTransferCommand.AffectsSingleGraph
BaseTransferCommand.AffectsGraph(Uri)
BaseTransferCommand.AffectsGraph(IRefNode)
BaseTransferCommand.ToString()
SparqlUpdateCommand.CommandType
SparqlUpdateCommand.Optimise(IQueryOptimiser)
object.Equals(object)
object.Equals(object, object)
object.GetHashCode()
object.GetType()
object.MemberwiseClone()
object.ReferenceEquals(object, object)
Namespace: VDS.RDF.Update.Commands
Assembly: dotNetRdf.dll
Syntax
public class MoveCommand : BaseTransferCommand

Constructors

| Improve this Doc View Source

MoveCommand(Uri, Uri, bool)

Creates a Command which Moves data from one Graph to another overwriting the destination Graph and deleting the source Graph.

Declaration
[Obsolete("Replaced by MoveCommand(IRefNode, IRefNode, bool)")]
public MoveCommand(Uri sourceUri, Uri destUri, bool silent)
Parameters
Type Name Description
System.Uri sourceUri

Source Graph URI.

System.Uri destUri

Destination Graph URI.

System.Boolean silent

Whether errors should be suppressed.

| Improve this Doc View Source

MoveCommand(Uri, Uri)

Creates a Command which Moves data from one Graph to another overwriting the destination Graph and deleting the source Graph.

Declaration
[Obsolete("Replaced by MoveCommand(IRefNode, IRefNode, bool)")]
public MoveCommand(Uri sourceUri, Uri destUri)
Parameters
Type Name Description
System.Uri sourceUri

Source Graph URI.

System.Uri destUri

Destination Graph URI.

| Improve this Doc View Source

MoveCommand(IRefNode, IRefNode, bool)

Creates a command which moves data from one graph to another, overwriting the destination graph and deleting the source graph.

Declaration
public MoveCommand(IRefNode sourceGraphName, IRefNode destinationGraphName, bool silent = false)
Parameters
Type Name Description
IRefNode sourceGraphName

Name of the source graph.

IRefNode destinationGraphName

Name of the destination graph.

System.Boolean silent

Whether errors should be suppressed.

Methods

| Improve this Doc View Source

Process(ISparqlUpdateProcessor)

Processes the Command using the given Update Processor.

Declaration
public override void Process(ISparqlUpdateProcessor processor)
Parameters
Type Name Description
ISparqlUpdateProcessor processor

SPARQL Update Processor.

Overrides
SparqlUpdateCommand.Process(ISparqlUpdateProcessor)

Extension Methods

Extensions.ToSafeString(object)
Extensions.AsEnumerable<T>(T)
  • Improve this Doc
  • View Source
In This Article
  • Constructors
    • MoveCommand(Uri, Uri, bool)
    • MoveCommand(Uri, Uri)
    • MoveCommand(IRefNode, IRefNode, bool)
  • Methods
    • Process(ISparqlUpdateProcessor)
  • Extension Methods
Back to top Generated by DocFX