Creates a SPARQL UPDATE job request object

Namespace: BrightstarDB.Dto
Assembly: BrightstarDB (in BrightstarDB.dll) Version: 1.9.0.0 (1.9.0.0)

Syntax

C#
public static JobRequestObject CreateSparqlUpdateJob(
	string updateExpression,
	string label = null
)
Visual Basic
Public Shared Function CreateSparqlUpdateJob ( 
	updateExpression As String,
	Optional label As String = Nothing
) As JobRequestObject
Visual C++
public:
static JobRequestObject^ CreateSparqlUpdateJob(
	String^ updateExpression, 
	String^ label = nullptr
)
F#
static member CreateSparqlUpdateJob : 
        updateExpression : string * 
        ?label : string 
(* Defaults:
        let _label = defaultArg label null
*)
-> JobRequestObject 

Parameters

updateExpression
Type: System..::..String
The SPARQL UPDATE expression to apply to the store
label (Optional)
Type: System..::..String
A user-friendly label for the job

Return Value

Type: JobRequestObject
A new JobRequestObject instance

See Also