Description:
This method performs a bit-wise inclusive OR operation with the field value and a given mask. The single parameter is the mask, which can be up to 64 bits (8 bytes) long.
A bit-wise inclusive OR compares each bit in the field value with the corresponding bit in the mask. If either bit is 1, the result is 1. If both bits are 1, the result is 1. Otherwise the result is 0.
Parameters:
|
[Required] |
Int64 |
"Mask to apply to data" |
|
Example:
If a byte field contained 0x77 and a RETRIEVE was performed using (OrMask 0xF0), the result would be 0xF7