ComparisonEngineCompareBinary Method (Byte, String, ValueOperator) |
Compares a binary value using the specified ValueOperator
Namespace: Lithnet.MetadirectoryServicesAssembly: Lithnet.MetadirectoryServices (in Lithnet.MetadirectoryServices.dll) Version: 1.0.6017.24765
Syntax public static bool CompareBinary(
byte[] actualValue,
string base64ExpectedValue,
ValueOperator valueOperator
)
Public Shared Function CompareBinary (
actualValue As Byte(),
base64ExpectedValue As String,
valueOperator As ValueOperator
) As Boolean
public:
static bool CompareBinary(
array<unsigned char>^ actualValue,
String^ base64ExpectedValue,
ValueOperator valueOperator
)
Parameters
- actualValue
- Type: SystemByte
The value obtained from the query - base64ExpectedValue
- Type: SystemString
The expected value specified in the query logic, in base64 format - valueOperator
- Type: Lithnet.MetadirectoryServicesValueOperator
The value operator to use in the comparison
Return Value
Type:
BooleanA boolean value indicating if the actual and expected value matched when using the specified ValueOperator
See Also