Class BaseTransferCommand
Abstract Base Class for SPARQL Update Commands which move data between Graphs.
Inheritance
System.Object
BaseTransferCommand
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 abstract class BaseTransferCommand : SparqlUpdateCommand
Constructors
| Improve this Doc View SourceBaseTransferCommand(SparqlUpdateCommandType, Uri, Uri)
Creates a new Transfer Command.
Declaration
public BaseTransferCommand(SparqlUpdateCommandType type, Uri sourceUri, Uri destUri)
Parameters
Type | Name | Description |
---|---|---|
SparqlUpdateCommandType | type | Command Type. |
System.Uri | sourceUri | Source Graph URI. |
System.Uri | destUri | Destination Graph URI. |
BaseTransferCommand(SparqlUpdateCommandType, Uri, Uri, Boolean)
Creates a new Transfer Command.
Declaration
public BaseTransferCommand(SparqlUpdateCommandType type, Uri sourceUri, Uri destUri, bool silent)
Parameters
Type | Name | Description |
---|---|---|
SparqlUpdateCommandType | type | Command Type. |
System.Uri | sourceUri | Source Graph URI. |
System.Uri | destUri | Destination Graph URI. |
System.Boolean | silent | Whether errors should be suppressed. |
Fields
| Improve this Doc View Source_destUri
Destination Graph URI.
Declaration
protected Uri _destUri
Field Value
Type | Description |
---|---|
System.Uri |
_silent
Whether errors should be suppressed.
Declaration
protected bool _silent
Field Value
Type | Description |
---|---|
System.Boolean |
_sourceUri
Source Graph URI.
Declaration
protected Uri _sourceUri
Field Value
Type | Description |
---|---|
System.Uri |
Properties
| Improve this Doc View SourceAffectsSingleGraph
Gets whether the Command affects a Single Graph.
Declaration
public override bool AffectsSingleGraph { get; }
Property Value
Type | Description |
---|---|
System.Boolean |
Overrides
| Improve this Doc View SourceDestinationUri
URI of the Destination Graph.
Declaration
public Uri DestinationUri { get; }
Property Value
Type | Description |
---|---|
System.Uri |
Silent
Whether errors during evaluation should be suppressed.
Declaration
public bool Silent { get; }
Property Value
Type | Description |
---|---|
System.Boolean |
SourceUri
URI of the Source Graph.
Declaration
public Uri SourceUri { get; }
Property Value
Type | Description |
---|---|
System.Uri |
Methods
| Improve this Doc View SourceAffectsGraph(Uri)
Gets whether the Command affects a given Graph.
Declaration
public override bool AffectsGraph(Uri graphUri)
Parameters
Type | Name | Description |
---|---|---|
System.Uri | graphUri | Graph URI. |
Returns
Type | Description |
---|---|
System.Boolean |
Overrides
| Improve this Doc View SourceToString()
Gets the String representation of the Command.
Declaration
public override string ToString()
Returns
Type | Description |
---|---|
System.String |