Returns the transaction record creaed by the execution of a specific job against the store
Namespace: BrightstarDB.ClientAssembly: BrightstarDB (in BrightstarDB.dll) Version: 1.9.0.0 (1.9.0.0)
Syntax
C# |
---|
public ITransactionInfo GetTransaction(
string storeName,
Guid jobId
) |
Visual Basic |
---|
Public Function GetTransaction (
storeName As String,
jobId As Guid
) As ITransactionInfo |
Visual C++ |
---|
public:
virtual ITransactionInfo^ GetTransaction(
String^ storeName,
Guid jobId
) sealed |
F# |
---|
abstract GetTransaction :
storeName : string *
jobId : Guid -> ITransactionInfo
override 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:
ITransactionInfoThe transaction information for the execution of the job or NULL if no matching transaction record was found
Implements
IBrightstarService..::..GetTransaction(String, Guid)
See Also