Class SelectArguments

Definition

Namespace:
Tizen.Content.MediaContent
Assembly:
Tizen.Content.MediaContent.dll

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

C#
Copy
public class SelectArguments : QueryArguments
Inheritance
object
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
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.

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
int

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

Remarks

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

Exceptions
Type Condition
System.ArgumentOutOfRangeException

value is less than zero.

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
int

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

Remarks

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

Exceptions
Type Condition
System.ArgumentOutOfRangeException

value is less than zero.