Class CopyCommand
Represents the SPARQL Update COPY Command.
Inherited Members
System.Object.Equals(System.Object)
System.Object.Equals(System.Object, System.Object)
System.Object.GetHashCode()
System.Object.GetType()
System.Object.MemberwiseClone()
System.Object.ReferenceEquals(System.Object, System.Object)
Namespace: VDS.RDF.Update.Commands
Assembly: dotNetRDF.dll
Syntax
public class CopyCommand : BaseTransferCommand
Constructors
| Improve this Doc View SourceCopyCommand(Uri, Uri)
Creates a Command which Copies the contents of one Graph to another overwriting the destination Graph.
Declaration
public CopyCommand(Uri sourceUri, Uri destUri)
Parameters
Type | Name | Description |
---|---|---|
System.Uri | sourceUri | Source Graph URI. |
System.Uri | destUri | Destination Graph URI. |
CopyCommand(Uri, Uri, Boolean)
Creates a Command which Copies the contents of one Graph to another overwriting the destination Graph.
Declaration
public CopyCommand(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. |
Methods
| Improve this Doc View SourceEvaluate(SparqlUpdateEvaluationContext)
Evaluates the Command in the given Context.
Declaration
public override void Evaluate(SparqlUpdateEvaluationContext context)
Parameters
Type | Name | Description |
---|---|---|
SparqlUpdateEvaluationContext | context | Evaluation Context. |
Overrides
| Improve this Doc View SourceProcess(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. |