load
Description​
Attempts a load of the score represented by the given data object.
- JavaScript
- C#
- Kotlin
load(data: unknown, success: (score: Score) => void, error: (error: Error) => void): boolean
bool Load(object data, (score: Score) => void success, (error: Error) => void error)
fun load(data: Any, success: (score: Score) => void, error: (error: Error) => void): Boolean
Parameter | Summary |
---|---|
dataAll | The data object to decode |
successAll | The action to call if the score was loaded |
errorAll | The action to call if any error during loading ocurred. |
Returns​
true if the data object is supported and a load was initiated, otherwise false