Gets a list of transactions executed against this store
            
Namespace: BrightstarDB.ClientAssembly: BrightstarDB (in BrightstarDB.dll) Version: 1.9.0.0 (1.9.0.0)
Syntax
| C# | 
|---|
public IEnumerable<ITransactionInfo> GetTransactions(
	string storeName,
	int skip,
	int take
)  | 
| Visual Basic | 
|---|
Public Function GetTransactions ( 
	storeName As String,
	skip As Integer,
	take As Integer
) As IEnumerable(Of ITransactionInfo)  | 
| Visual C++ | 
|---|
public:
virtual IEnumerable<ITransactionInfo^>^ GetTransactions(
	String^ storeName, 
	int skip, 
	int take
) sealed  | 
| F# | 
|---|
abstract GetTransactions : 
        storeName : string * 
        skip : int * 
        take : int -> IEnumerable<ITransactionInfo> 
override GetTransactions : 
        storeName : string * 
        skip : int * 
        take : int -> IEnumerable<ITransactionInfo>  | 
Parameters
- storeName
 - Type: System..::..String
Name of store for  
- skip
 - Type: System..::..Int32
How many transactions to skip over 
- take
 - Type: System..::..Int32
How many transactions to return. 
Return Value
Type: 
IEnumerable<(Of <(<'ITransactionInfo>)>)>An enumeration over the transactions executed against the store
Implements
IBrightstarService..::..GetTransactions(String, Int32, Int32)
See Also