Class SelectArguments

Definition

Namespace:
Tizen.Content.MediaContent
Assembly:
Tizen.Content.MediaContent.dll
API Level:
4

Provides the ability to filter the result of a Select command.

C#
Copy
public class SelectArguments : QueryArguments
Inheritance
SelectArguments
Remarks

A filter is required for filtering information associated with Album, Folder, Tag, Bookmark, Playlist, and MediaInfo.

Properties

View Source

SortOrder

Gets or sets the sort order of the results.

Declaration
C#
Copy
public string SortOrder { get; set; }
Property Value
Type Description
System.String

The expression for the sort order.

Remarks

Expressions for the sort order can be:
column [COLLATE NOCASE/RTRIM/LOCALIZED] [ASC/DESC], column2 ...

Exceptions
Type Condition
System.ArgumentException

value is a zero-length string, contains only white space.

API Level: 4
View Source

StartRowIndex

Gets or sets the starting row position of a query (starting from zero).

Declaration
C#
Copy
public int StartRowIndex { get; set; }
Property Value
Type Description
System.Int32

An integer value that indicates the starting row position of a query.

Exceptions
Type Condition
ArgumentOutOfRangeException

value is less than zero.

API Level: 4
View Source

TotalRowCount

Gets or sets the number of rows to be retrieved.

Declaration
C#
Copy
public int TotalRowCount { get; set; }
Property Value
Type Description
System.Int32

An integer value that indicates the limit of rows of the result.

Exceptions
Type Condition
ArgumentOutOfRangeException

value is less than zero.

API Level: 4