C# Class Microsoft.Isam.Esent.Interop.NATIVE_ENUMCOLUMN

Mostra file Open project: ayende/managed-esent Class Usage Examples

Public Properties

Property Type Description
cbData uint
columnid uint
err int
pvData System.IntPtr

Property Details

cbData public_oe property

The size of the value that was enumerated for the column. This member is only used if err is equal to JET_wrn.ColumnSingleValue.
The unmanaged JET_ENUMCOLUMN structure is a union so this is aliased with cEnumColumnValue.
public uint cbData
return uint

columnid public_oe property

The columnid that was enumerated.
public uint columnid
return uint

err public_oe property

The column status code from the enumeration of the column.
public int err
return int

pvData public_oe property

The the value that was enumerated for the column. This member is only used if err is equal to JET_wrn.ColumnSingleValue.
The unmanaged JET_ENUMCOLUMN structure is a union so this is aliased with rgEnumColumnValue.
public IntPtr,System pvData
return System.IntPtr