Returns the transaction record creaed by the execution of a specific job against the store

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

Syntax

C#
ITransactionInfo GetTransaction(
	string storeName,
	Guid jobId
)
Visual Basic
Function GetTransaction ( 
	storeName As String,
	jobId As Guid
) As ITransactionInfo
Visual C++
ITransactionInfo^ GetTransaction(
	String^ storeName, 
	Guid jobId
)
F#
abstract GetTransaction : 
        storeName : string * 
        jobId : Guid -> ITransactionInfo 

Parameters

storeName
Type: System..::..String
The name of the store where the job was executed
jobId
Type: System..::..Guid
The ID of the job that was executed

Return Value

Type: ITransactionInfo
The transaction information for the execution of the job or NULL if no matching transaction record was found

See Also