C# 클래스 gdapi.CollectionFilter

Represents a filter to be used with a request for a Collection.
파일 보기 프로젝트 열기: godaddy/gdapi-csharp 1 사용 예제들

공개 메소드들

메소드 설명
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

메소드 상세

CollectionFilter() 공개 메소드

Creates a new CollectionFilter
public CollectionFilter ( ) : System.Collections.Generic
리턴 System.Collections.Generic

CollectionFilter() 공개 메소드

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
리턴 System.Collections.Generic

addFilterItem() 공개 메소드

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
리턴 void

getFilterItems() 공개 메소드

Gets the filter items
public getFilterItems ( ) : Dictionary>>
리턴 Dictionary>>