All Classes Namespaces Functions Properties Pages
Properties | List of all members
MetaDataFilterInfo Class Reference

MetaDataFilterInfo class More...

Properties

bool IsMetaDataUsed [get, set]
 Gets or sets a value indicating whether the meta data value is to be used. More...
 
object MetaDataValue [get, set]
 Gets or sets the value for the meta data field. More...
 
string Name [get, set]
 Gets or sets the name of the meta data field. More...
 
short OperatorValue [get, set]
 Gets or sets the value of the comparison operator to be applied. More...
 

Description

MetaDataFilterInfo class

When searching on string meta data fields, the LIKE and NOT LIKE operators can be used to perform wildcard search. The supported wildcard functions are *,?,~.

?Matches any single character. For example, "Bl?ck" finds either "Black" or "Block"
*Matches any one or more characters. For example, "North*" finds "North", "Northeast", and "Northwest". And "(*)" finds any content enclosed by parentheses
~Used as an escape character to include a literal question mark, asterisk, or tilde. For example, to find "West*" use "West~*"

Property Documentation

bool IsMetaDataUsed
getset

Gets or sets a value indicating whether the meta data value is to be used.

true if the meta data value is to be used; otherwise, false.

object MetaDataValue
getset

Gets or sets the value for the meta data field.

string Name
getset

Gets or sets the name of the meta data field.

short OperatorValue
getset

Gets or sets the value of the comparison operator to be applied.

The enumeration for operator is as follows

EnumerationDescription
0Equals
1GreaterThan
2GreaterThanEqualTo
3LessThan
4LessThanEqualTo
5NotEqualTo
6IN
7Like
8Not Like