Interface IAimpDataProviderSelection
Interface provides access to the currently selected data at DataProvider. Interface implementation must support asynchronous access.
Namespace: AIMP.SDK.MusicLibrary
Assembly: AIMP.SDK.dll
Syntax
public interface IAimpDataProviderSelection
Methods
GetValueAsFloat(Int32)
Gets the value as float.
Declaration
double GetValueAsFloat(int fieldIndex)
Parameters
Type | Name | Description |
---|---|---|
System.Int32 | fieldIndex | Index of the field. |
GetValueAsInt32(Int32)
Gets the value as int32.
Declaration
int GetValueAsInt32(int fieldIndex)
Parameters
Type | Name | Description |
---|---|---|
System.Int32 | fieldIndex | Index of the field. |
GetValueAsInt64(Int32)
Gets the value as int64.
Declaration
long GetValueAsInt64(int fieldIndex)
Parameters
Type | Name | Description |
---|---|---|
System.Int32 | fieldIndex | Index of the field. |
GetValueAsString(Int32)
Gets the value as string.
Declaration
string GetValueAsString(int fieldIndex)
Parameters
Type | Name | Description |
---|---|---|
System.Int32 | fieldIndex | Index of the field. |
HasNextPage()
Return the True value to notify the Music library the page-by-page access method is used to access to the data. Value specifies that next page of data is available. Note that this mode automatically disable for end users the Group Details and the Album Thumbnails views.
Declaration
bool HasNextPage()
NextRow()
Jumps to next row. Returns False if current row is last.
Declaration
bool NextRow()