Creates a store import job request object

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

Syntax

C#
public static JobRequestObject CreateImportJob(
	string importFileName,
	string defaultGraphUri = null,
	string label = null
)
Visual Basic
Public Shared Function CreateImportJob ( 
	importFileName As String,
	Optional defaultGraphUri As String = Nothing,
	Optional label As String = Nothing
) As JobRequestObject
Visual C++
public:
static JobRequestObject^ CreateImportJob(
	String^ importFileName, 
	String^ defaultGraphUri = nullptr, 
	String^ label = nullptr
)
F#
static member CreateImportJob : 
        importFileName : string * 
        ?defaultGraphUri : string * 
        ?label : string 
(* Defaults:
        let _defaultGraphUri = defaultArg defaultGraphUri null
        let _label = defaultArg label null
*)
-> JobRequestObject 

Parameters

importFileName
Type: System..::..String
The name of the file to import the data from
defaultGraphUri (Optional)
Type: System..::..String
OPTIONAL: The default graph to apply to triples parsed from the import file. If not provided, defaults to the system default graph./
label (Optional)
Type: System..::..String
A user-friendly label for the job

Return Value

Type: JobRequestObject
A new JobRequestObject instance

See Also