Метод | Описание | |
---|---|---|
Filter ( string key, FilterOperator filterType, string value ) : System |
Creates a new instance of a filter
|
|
ToFilterOnlyString ( ) : string |
Method gets filter only portion of a filter object for reformatting within a parameter set for POST and PUT calls
|
|
ToString ( ) : string |
Override of ToString method to generate properly formatted string representation of filtre
|
|
parseFilter ( string filterString ) : |
Static method returns a single intance of a Filter object from the given filter string
|
|
parseFilterList ( string filterString ) : List |
Static method returns a colection of Filter Objects from a filter string
|
Метод | Описание | |
---|---|---|
getOpSign ( FilterOperator filterOp ) : string |
Private method gets string representation of the current Operator value
|
|
parseFilterFromString ( string workingString, FilterOperator filterOp ) : |
Private method handles parsing filter from string based on inputs
|
|
parseFilterString ( string filterString ) : |
Private method handles the internals of parsing a string into an instance of a Filter object
|
public Filter ( string key, FilterOperator filterType, string value ) : System | ||
key | string | name of the field to filter on |
filterType | FilterOperator | Equal or NotEqual |
value | string | value to use for filtering |
Результат | System |
public static parseFilter ( string filterString ) : |
||
filterString | string | query string formatted filter for a single filter |
Результат |
public static parseFilterList ( string filterString ) : List |
||
filterString | string | query string formatted filter (key==/<>value) or (filter[]=key==/<>value) for a list of filters |
Результат | List |