Starts an import job.

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

Syntax

C#
public IJobInfo StartImport(
	string storeName,
	string fileName,
	string graphUri = "http://www.brightstardb.com/.well-known/model/defaultgraph",
	string label = null
)
Visual Basic
Public Function StartImport ( 
	storeName 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++
public:
virtual IJobInfo^ StartImport(
	String^ storeName, 
	String^ fileName, 
	String^ graphUri = L"http://www.brightstardb.com/.well-known/model/defaultgraph", 
	String^ label = nullptr
) sealed
F#
abstract StartImport : 
        storeName : 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 
override StartImport : 
        storeName : 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

storeName
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 graph that the data will be imported into.
label (Optional)
Type: System..::..String
Optional user-friendly label for the job.

Return Value

Type: IJobInfo
An IJobInfo instance

Implements

IBrightstarService..::..StartImport(String, String, String, String)

See Also