Create a request for a new Snapshot job

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

Syntax

C#
[ObsoleteAttribute("Use the type-safe version of this method that takes a BrightstarDB.Storage.PersistenceType parameter instead")]
public static JobRequestObject CreateSnapshotJob(
	string targetStoreName,
	string persistenceType,
	string label = null
)
Visual Basic
<ObsoleteAttribute("Use the type-safe version of this method that takes a BrightstarDB.Storage.PersistenceType parameter instead")> 
Public Shared Function CreateSnapshotJob ( 
	targetStoreName As String,
	persistenceType As String,
	Optional label As String = Nothing
) As JobRequestObject
Visual C++
public:
[ObsoleteAttribute(L"Use the type-safe version of this method that takes a BrightstarDB.Storage.PersistenceType parameter instead")]
static JobRequestObject^ CreateSnapshotJob(
	String^ targetStoreName, 
	String^ persistenceType, 
	String^ label = nullptr
)
F#
[<ObsoleteAttribute("Use the type-safe version of this method that takes a BrightstarDB.Storage.PersistenceType parameter instead")>]
static member CreateSnapshotJob : 
        targetStoreName : string * 
        persistenceType : string * 
        ?label : string 
(* Defaults:
        let _label = defaultArg label null
*)
-> JobRequestObject 

Parameters

targetStoreName
Type: System..::..String

[Missing <param name="targetStoreName"/> documentation for "M:BrightstarDB.Dto.JobRequestObject.CreateSnapshotJob(System.String,System.String,System.String)"]

persistenceType
Type: System..::..String

[Missing <param name="persistenceType"/> documentation for "M:BrightstarDB.Dto.JobRequestObject.CreateSnapshotJob(System.String,System.String,System.String)"]

label (Optional)
Type: System..::..String
A user-friendly label for the job

Return Value

Type: JobRequestObject

[Missing <returns> documentation for "M:BrightstarDB.Dto.JobRequestObject.CreateSnapshotJob(System.String,System.String,System.String)"]

See Also