Gets information about jobs recently executed against a store
            
Namespace: BrightstarDB.ClientAssembly: BrightstarDB (in BrightstarDB.dll) Version: 1.9.0.0 (1.9.0.0)
Syntax
| C# | 
|---|
IEnumerable<IJobInfo> GetJobInfo( string storeName, int skip, int take )  | 
| Visual Basic | 
|---|
Function GetJobInfo ( storeName As String, skip As Integer, take As Integer ) As IEnumerable(Of IJobInfo)  | 
| Visual C++ | 
|---|
IEnumerable<IJobInfo^>^ GetJobInfo( String^ storeName, int skip, int take )  | 
| F# | 
|---|
abstract GetJobInfo : storeName : string * skip : int * take : int -> IEnumerable<IJobInfo>  | 
Parameters
- storeName
 - Type: System..::..String
The name of the store to retrieve job information from 
- skip
 - Type: System..::..Int32
The number of records to skip 
- take
 - Type: System..::..Int32
The number of records to take 
Return Value
Type: IEnumerable<(Of <(<'IJobInfo>)>)>The subset of job information requested by the skip and take parameters
Remarks
Job information is returned in reverse order of the order in which they will be / were executed (most recent first).