Starts an export job
            
Namespace: BrightstarDB.ClientAssembly: 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 URI of the graph to be exported. If NULL, all graphs in the store are exported. 
- exportFormat (Optional)
 - Type: BrightstarDB..::..RdfFormat
The RdfFormat to when serializing the export data. Currently only NQuads and NTriples are supported. Defaults to NQuads 
- label (Optional)
 - Type: System..::..String
Optional user-friendly label for the job. 
Return Value
Type: 
IJobInfoA JobInfo instance
Implements
IBrightstarService..::..StartExport(String, String, String, RdfFormat, String)
See Also