C# Class gdapi.CollectionFilter

Represents a filter to be used with a request for a Collection.
Afficher le fichier Open project: godaddy/gdapi-csharp Class Usage Examples

Méthodes publiques

Méthode Description
CollectionFilter ( ) : System.Collections.Generic

Creates a new CollectionFilter

CollectionFilter ( string property, string modifier, string value ) : System.Collections.Generic

Creates a new CollectionFilter with a filter with property, modifier, and value.

addFilterItem ( string property, string modifier, string value ) : void

Adds a filter item to the filter

getFilterItems ( ) : Dictionary>>

Gets the filter items

Method Details

CollectionFilter() public méthode

Creates a new CollectionFilter
public CollectionFilter ( ) : System.Collections.Generic
Résultat System.Collections.Generic

CollectionFilter() public méthode

Creates a new CollectionFilter with a filter with property, modifier, and value.
public CollectionFilter ( string property, string modifier, string value ) : System.Collections.Generic
property string The property of the Resource to filter by
modifier string The modifier type
value string The value to filter by
Résultat System.Collections.Generic

addFilterItem() public méthode

Adds a filter item to the filter
public addFilterItem ( string property, string modifier, string value ) : void
property string The property of the Resource to filter by
modifier string The modifier type
value string The value to filter by
Résultat void

getFilterItems() public méthode

Gets the filter items
public getFilterItems ( ) : Dictionary>>
Résultat Dictionary>>