Starts an export job

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

Syntax

C#
public IJobInfo StartExport(
	string store,
	string fileName,
	string graphUri,
	RdfFormat exportFormat = null,
	string label = null
)
Visual Basic
Public Function StartExport ( 
	store As String,
	fileName As String,
	graphUri As String,
	Optional exportFormat As RdfFormat = Nothing,
	Optional label As String = Nothing
) As IJobInfo
Visual C++
public:
virtual IJobInfo^ StartExport(
	String^ store, 
	String^ fileName, 
	String^ graphUri, 
	RdfFormat^ exportFormat = nullptr, 
	String^ label = nullptr
) sealed
F#
abstract StartExport : 
        store : string * 
        fileName : string * 
        graphUri : string * 
        ?exportFormat : RdfFormat * 
        ?label : string 
(* Defaults:
        let _exportFormat = defaultArg exportFormat null
        let _label = defaultArg label null
*)
-> IJobInfo 
override StartExport : 
        store : string * 
        fileName : string * 
        graphUri : string * 
        ?exportFormat : RdfFormat * 
        ?label : string 
(* Defaults:
        let _exportFormat = defaultArg exportFormat null
        let _label = defaultArg label null
*)
-> IJobInfo 

Parameters

store
Type: System..::..String
The store to export data from
fileName
Type: System..::..String
The name of the file in the brightstar\import folder to write to. This file will be overwritten if it already exists.
graphUri
Type: System..::..String
The identifier of the store graph to be exported. If NULL, all graphs in the store will be 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
Optional user-friendly label for the job.

Return Value

Type: IJobInfo
A JobInfo instance

Implements

IBrightstarService..::..StartExport(String, String, String, RdfFormat, String)

See Also