Property | Type | Description | |
---|---|---|---|
Value | object |
Method | Description | |
---|---|---|
ToString ( ) : string |
Method | Description | |
---|---|---|
AbstractSingleValueExpression ( string property, object value, bool nullOk, bool trueOrNot ) : System |
Base class for expressions that only check one property.
|
protected AbstractSingleValueExpression ( string property, object value, bool nullOk, bool trueOrNot ) : System | ||
property | string | The data class' property/field being compared. /// May not be null. |
value | object | The value to check for. May be null only if nullOk is true. |
nullOk | bool | Whether the value can be null or not. |
trueOrNot | bool | True means look for matches (I.E. ==), /// false means look for non-matches (I.E. !=) |
return | System |