Class SelectArguments
Definition
- Namespace:
- Tizen.Content.MediaContent
- Assembly:
- Tizen.Content.MediaContent.dll
Provides the ability to filter the result of a Select command.
public class SelectArguments : QueryArguments
- Inheritance
Remarks
A filter is required for filtering information associated with Album, Folder, Tag, Bookmark, Playlist, and MediaInfo.
Properties
View SourceSortOrder
Gets or sets the sort order of the results.
Declaration
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 |
|
See Also
StartRowIndex
Gets or sets the starting row position of a query (starting from zero).
Declaration
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 |
|
TotalRowCount
Gets or sets the number of rows to be retrieved.
Declaration
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 |
|