Starts an import job.

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

Syntax

C#
IJobInfo StartImport(
	string store,
	string fileName,
	string graphUri = "http://www.brightstardb.com/.well-known/model/defaultgraph",
	string label = null
)
Visual Basic
Function StartImport ( 
	store As String,
	fileName As String,
	Optional graphUri As String = "http://www.brightstardb.com/.well-known/model/defaultgraph",
	Optional label As String = Nothing
) As IJobInfo
Visual C++
IJobInfo^ StartImport(
	String^ store, 
	String^ fileName, 
	String^ graphUri = L"http://www.brightstardb.com/.well-known/model/defaultgraph", 
	String^ label = nullptr
)
F#
abstract StartImport : 
        store : string * 
        fileName : string * 
        ?graphUri : string * 
        ?label : string 
(* Defaults:
        let _graphUri = defaultArg graphUri "http://www.brightstardb.com/.well-known/model/defaultgraph"
        let _label = defaultArg label null
*)
-> IJobInfo 

Parameters

store
Type: System..::..String
The store to perform the import to
fileName
Type: System..::..String
The name of the file in brighhtstar\import folder to import.
graphUri (Optional)
Type: System..::..String
The URI of the default graph to import the data into. Defaults to DefaultGraphUri
label (Optional)
Type: System..::..String
Optional user-friendly label for the job.

Return Value

Type: IJobInfo
A IJobInfo instance for monitoring the status of the job

See Also