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.
Determine whether one log position is after or equal to another log position.
Namespace: Microsoft.Isam.Esent.Interop
Assembly: Microsoft.Isam.Esent.Interop (in Microsoft.Isam.Esent.Interop.dll)
Syntax
'Declaration
Public Shared Operator >= ( _
lhs As JET_LGPOS, _
rhs As JET_LGPOS _
) As Boolean
'Usage
Dim lhs As JET_LGPOS
Dim rhs As JET_LGPOS
Dim returnValue As Boolean
returnValue = (lhs >= rhs)
public static bool operator >=(
JET_LGPOS lhs,
JET_LGPOS rhs
)
Parameters
lhs
Type: Microsoft.Isam.Esent.Interop.JET_LGPOSThe first log position to compare.
rhs
Type: Microsoft.Isam.Esent.Interop.JET_LGPOSThe second log position to compare.
Return value
Type: System.Boolean
True if lhs comes after or is equal to rhs.