Executes a previous transaction
            
Namespace: BrightstarDB.ClientAssembly: BrightstarDB (in BrightstarDB.dll) Version: 1.9.0.0 (1.9.0.0)
Syntax
| C# | 
|---|
IJobInfo ReExecuteTransaction(
	string storeName,
	ITransactionInfo transactionInfo,
	string label = null
)  | 
| Visual Basic | 
|---|
Function ReExecuteTransaction ( 
	storeName As String,
	transactionInfo As ITransactionInfo,
	Optional label As String = Nothing
) As IJobInfo  | 
| Visual C++ | 
|---|
IJobInfo^ ReExecuteTransaction(
	String^ storeName, 
	ITransactionInfo^ transactionInfo, 
	String^ label = nullptr
)  | 
| F# | 
|---|
abstract ReExecuteTransaction : 
        storeName : string * 
        transactionInfo : ITransactionInfo * 
        ?label : string 
(* Defaults:
        let _label = defaultArg label null
*)
-> IJobInfo 
 | 
Parameters
- storeName
 - Type: System..::..String
The name of the store to re-apply the transaction to 
- transactionInfo
 - Type: BrightstarDB.Client..::..ITransactionInfo
The transaction to be applied 
- label (Optional)
 - Type: System..::..String
Optional user-friendly label for the job. 
Return Value
Type: 
IJobInfo[Missing <returns> documentation for "M:BrightstarDB.Client.IBrightstarService.ReExecuteTransaction(System.String,BrightstarDB.Client.ITransactionInfo,System.String)"]
See Also