Note
Access to this page requires authorization. You can try signing in or changing directories.
Access to this page requires authorization. You can try changing directories.
Iterates over all the indexes in the table, returning information about each one.
Namespace: Microsoft.Isam.Esent.Interop
Assembly: Microsoft.Isam.Esent.Interop (in Microsoft.Isam.Esent.Interop.dll)
Syntax
'Declaration
Public Shared Function GetTableIndexes ( _
sesid As JET_SESID, _
tableid As JET_TABLEID _
) As IEnumerable(Of IndexInfo)
'Usage
Dim sesid As JET_SESID
Dim tableid As JET_TABLEID
Dim returnValue As IEnumerable(Of IndexInfo)
returnValue = Api.GetTableIndexes(sesid, _
tableid)
public static IEnumerable<IndexInfo> GetTableIndexes(
JET_SESID sesid,
JET_TABLEID tableid
)
Parameters
sesid
Type: Microsoft.Isam.Esent.Interop.JET_SESIDThe session to use.
tableid
Type: Microsoft.Isam.Esent.Interop.JET_TABLEIDThe table to retrieve index information for.
Return value
Type: System.Collections.Generic.IEnumerable<IndexInfo>
An iterator over an IndexInfo for each index in the table.