SparqlUpdateCommandType Enumeration | 
 
            Possible SPARQL Update Command Types.
            
 
    Namespace: 
   VDS.RDF.Update
    Assembly:
   dotNetRDF (in dotNetRDF.dll) Version: 
Syntaxpublic enum SparqlUpdateCommandType
Public Enumeration SparqlUpdateCommandType
Members| 
									 
								 | Member name | Value | Description | 
|---|
 | InsertData | 0 | 
            Command inserts data
             | 
 | DeleteData | 1 | 
            Command deletes data
             | 
 | Insert | 2 | 
            Command inserts data and may be based upon a template
             | 
 | Delete | 3 | 
            Command deletes data and may be based upon a template
             | 
 | Modify | 4 | 
            Command modifies data
             | 
 | Load | 5 | 
            Command loads a graph into the Store
             | 
 | Clear | 6 | 
            Command clears a graph in the Store
             | 
 | Create | 7 | 
            Command creates a Graph in the Store
             | 
 | Drop | 8 | 
            Command removes a Graph from the Store
             | 
 | Add | 9 | 
            Command which merges the data from one Graph into another
             | 
 | Copy | 10 | 
            Command which copies the data from one Graph into another overwriting the destination Graph
             | 
 | Move | 11 | 
            Command which moves data from one Graph to another overwriting the destination Graph and deleting the Source Graph
             | 
 | Unknown | 12 | 
            Unknown
             | 
See Also