 | OsuClientGetUserRecent Method |
Return informations about a user recent scores.
Namespace:
CSharpOsu
Assembly:
CSharpOsu (in CSharpOsu.dll) Version: 1.0.0
Syntaxpublic OsuUserRecent[] GetUserRecent(
string _u,
Nullable<mode> _m = null,
Nullable<int> _limit = null
)
Public Function GetUserRecent (
_u As String,
Optional _m As Nullable(Of mode) = Nothing,
Optional _limit As Nullable(Of Integer) = Nothing
) As OsuUserRecent()
public:
array<OsuUserRecent^>^ GetUserRecent(
String^ _u,
Nullable<mode> _m = nullptr,
Nullable<int> _limit = nullptr
)
member GetUserRecent :
_u : string *
?_m : Nullable<mode> *
?_limit : Nullable<int>
(* Defaults:
let __m = defaultArg _m null
let __limit = defaultArg _limit null
*)
-> OsuUserRecent[]
Parameters
- _u
- 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. - _limit (Optional)
- Type: SystemNullableInt32
Amount of results from the top (range between 1 and 100 - defaults to 50).
Return Value
Type:
OsuUserRecentFetch user recent scores.
See Also