VelocityDbComparerKeySetComparisonArrayFromObject Method |
Comparators that use comparison arrays need to override this function. Given a Key object, set the comparisonArray bytes
Namespace:
VelocityDb.Collection.Comparer
Assembly:
VelocityDb (in VelocityDb.dll) Version: 11.1.0.0 (11.1)
Syntax public virtual void SetComparisonArrayFromObject(
Key key,
byte[] comparisonArray,
bool oidShort
)
Public Overridable Sub SetComparisonArrayFromObject (
key As Key,
comparisonArray As Byte(),
oidShort As Boolean
)
public:
virtual void SetComparisonArrayFromObject(
Key key,
array<unsigned char>^ comparisonArray,
bool oidShort
)
abstract SetComparisonArrayFromObject :
key : 'Key *
comparisonArray : byte[] *
oidShort : bool -> unit
override SetComparisonArrayFromObject :
key : 'Key *
comparisonArray : byte[] *
oidShort : bool -> unit
Parameters
- key
- Type: Key
The object from which to extract the comparison array bytes - comparisonArray
- Type: SystemByte
The array containing the object comparison bytes - oidShort
- Type: SystemBoolean
If oidShort is true then only the page and slot numbers need to be compared if the comparator bytes includes any Oid bytes
See Also