 | OsuClientGetUser Method |
Return informations about a user.
Namespace:
CSharpOsu
Assembly:
CSharpOsu (in CSharpOsu.dll) Version: 1.0.0
Syntaxpublic OsuUser[] GetUser(
string id,
Nullable<mode> _m = null,
Nullable<DateTime> _event_days = null
)
Public Function GetUser (
id As String,
Optional _m As Nullable(Of mode) = Nothing,
Optional _event_days As Nullable(Of DateTime) = Nothing
) As OsuUser()
public:
array<OsuUser^>^ GetUser(
String^ id,
Nullable<mode> _m = nullptr,
Nullable<DateTime> _event_days = nullptr
)
member GetUser :
id : string *
?_m : Nullable<mode> *
?_event_days : Nullable<DateTime>
(* Defaults:
let __m = defaultArg _m null
let __event_days = defaultArg _event_days null
*)
-> OsuUser[]
Parameters
- id
- Type: SystemString
Specify a user id or a username to return metadata from (required). - _m (Optional)
- Type: SystemNullablemode
Mode (0 = osu!, 1 = Taiko, 2 = CtB, 3 = osu!mania). Optional, maps of all modes are returned by default. - _event_days (Optional)
- Type: SystemNullableDateTime
Max number of days between now and last event date. Range of 1-31. Optional, default value is 1.
Return Value
Type:
OsuUserFetch User.
See Also