Gets a list of transactions executed against this store

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

Syntax

C#
IEnumerable<ITransactionInfo> GetTransactions(
	string storeName,
	int skip,
	int take
)
Visual Basic
Function GetTransactions ( 
	storeName As String,
	skip As Integer,
	take As Integer
) As IEnumerable(Of ITransactionInfo)
Visual C++
IEnumerable<ITransactionInfo^>^ GetTransactions(
	String^ storeName, 
	int skip, 
	int take
)
F#
abstract 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

See Also