 | OsuClientGetScore Method |
Return informations about scores from a beatmap.
Namespace:
CSharpOsu
Assembly:
CSharpOsu (in CSharpOsu.dll) Version: 1.0.0
Syntaxpublic OsuScore[] GetScore(
long _b,
string _u = null,
Nullable<mode> _m = null,
Nullable<long> _mods = null,
Nullable<int> _limit = null
)
Public Function GetScore (
_b As Long,
Optional _u As String = Nothing,
Optional _m As Nullable(Of mode) = Nothing,
Optional _mods As Nullable(Of Long) = Nothing,
Optional _limit As Nullable(Of Integer) = Nothing
) As OsuScore()
public:
array<OsuScore^>^ GetScore(
long long _b,
String^ _u = nullptr,
Nullable<mode> _m = nullptr,
Nullable<long long> _mods = nullptr,
Nullable<int> _limit = nullptr
)
member GetScore :
_b : int64 *
?_u : string *
?_m : Nullable<mode> *
?_mods : Nullable<int64> *
?_limit : Nullable<int>
(* Defaults:
let __u = defaultArg _u null
let __m = defaultArg _m null
let __mods = defaultArg _mods null
let __limit = defaultArg _limit null
*)
-> OsuScore[]
Parameters
- _b
- Type: SystemInt64
Specify a beatmap_id to return score information from. - _u (Optional)
- Type: SystemString
Specify a user_id or a username to return score information for. - _m (Optional)
- Type: SystemNullablemode
Mode (0 = osu!, 1 = Taiko, 2 = CtB, 3 = osu!mania). Optional, default value is 0. - _mods (Optional)
- Type: SystemNullableInt64
Specify a mod or mod combination (See https://github.com/ppy/osu-api/wiki#mods ) - _limit (Optional)
- Type: SystemNullableInt32
Amount of results from the top (range between 1 and 100 - defaults to 50).
Return Value
Type:
OsuScoreFetch Scores.
See Also