Gets a list of transations
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
- skip
- Type: System..::..Int32
Number of transactions to skip
- take
- Type: System..::..Int32
Number of transaction to return
Return Value
Type:
IEnumerable<(Of <(<'ITransactionInfo>)>)>[Missing <returns> documentation for "M:BrightstarDB.Client.EmbeddedBrightstarService.GetTransactions(System.String,System.Int32,System.Int32)"]
Implements
IBrightstarService..::..GetTransactions(String, Int32, Int32)
See Also