Starts an import job
Namespace: BrightstarDB.ClientAssembly: BrightstarDB (in BrightstarDB.dll) Version: 1.9.0.0 (1.9.0.0)
Syntax
C# |
---|
public IJobInfo StartImport(
string store,
string fileName,
string graphUri,
string label = null
) |
Visual Basic |
---|
Public Function StartImport (
store As String,
fileName As String,
graphUri As String,
Optional label As String = Nothing
) As IJobInfo |
Visual C++ |
---|
public:
virtual IJobInfo^ StartImport(
String^ store,
String^ fileName,
String^ graphUri,
String^ label = nullptr
) sealed |
F# |
---|
abstract StartImport :
store : string *
fileName : string *
graphUri : string *
?label : string
(* Defaults:
let _label = defaultArg label null
*)
-> IJobInfo
override StartImport :
store : string *
fileName : string *
graphUri : string *
?label : string
(* Defaults:
let _label = defaultArg label null
*)
-> IJobInfo |
Parameters
- store
- Type: System..::..String
The store to import into
- fileName
- Type: System..::..String
The URI of the data to import
- graphUri
- Type: System..::..String
The URI identifier of the graph that the data is to be imported into. If NULL, import is into the default graph
- label (Optional)
- Type: System..::..String
Optional user-friendly label for the job.
Return Value
Type:
IJobInfoA
IJobInfo instance to use for monitoring the progress of the job
Implements
IBrightstarService..::..StartImport(String, String, String, String)
See Also