Creates a store export 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 CreateExportJob(
	string exportFileName,
	string graphUri = null,
	RdfFormat exportFormat = null,
	string label = null
)
Visual Basic
Public Shared Function CreateExportJob ( 
	exportFileName As String,
	Optional graphUri As String = Nothing,
	Optional exportFormat As RdfFormat = Nothing,
	Optional label As String = Nothing
) As JobRequestObject
Visual C++
public:
static JobRequestObject^ CreateExportJob(
	String^ exportFileName, 
	String^ graphUri = nullptr, 
	RdfFormat^ exportFormat = nullptr, 
	String^ label = nullptr
)
F#
static member CreateExportJob : 
        exportFileName : string * 
        ?graphUri : string * 
        ?exportFormat : RdfFormat * 
        ?label : string 
(* Defaults:
        let _graphUri = defaultArg graphUri null
        let _exportFormat = defaultArg exportFormat null
        let _label = defaultArg label null
*)
-> JobRequestObject 

Parameters

exportFileName
Type: System..::..String
The name of the file to export the data to
graphUri (Optional)
Type: System..::..String
OPTIONAL: The URI identifier of the graph to be exported. If not provided, all graphs in the store are exported
exportFormat (Optional)
Type: BrightstarDB..::..RdfFormat
The serialization format to use for the exported data. If unspecified or null, export will default to using NQuads format.
label (Optional)
Type: System..::..String
A user-friendly label for the job

Return Value

Type: JobRequestObject
A new JobRequestObject instance

See Also