C# Класс Azavea.Open.DAO.Criteria.SortOrder

Показать файл Открыть проект

Открытые свойства

Свойство Тип Описание
Direction SortType
Property string

Открытые методы

Метод Описание
SortOrder ( string property ) : System

A simple class that holds a single sort criterion. This constructor constructs one with an "ascending" sort.

SortOrder ( string property, SortType direction ) : System

A simple class that holds a single sort criterion.

ToString ( ) : string

Returns a T:System.String that represents the current T:System.Object.

Описание методов

SortOrder() публичный Метод

A simple class that holds a single sort criterion. This constructor constructs one with an "ascending" sort.
public SortOrder ( string property ) : System
property string The data class' property to sort on.
Результат System

SortOrder() публичный Метод

A simple class that holds a single sort criterion.
public SortOrder ( string property, SortType direction ) : System
property string The data class' property to sort on.
direction SortType The direction to sort based on the Property.
Результат System

ToString() публичный Метод

Returns a T:System.String that represents the current T:System.Object.
public ToString ( ) : string
Результат string

Описание свойств

Direction публичное свойство

The direction to sort based on the Property.
public SortType Direction
Результат SortType

Property публичное свойство

The data class' property to sort on.
public string Property
Результат string