 | OsuClientGetBeatmap Method |
Return information about beatmaps.
Namespace:
CSharpOsu
Assembly:
CSharpOsu (in CSharpOsu.dll) Version: 1.0.0
Syntaxpublic OsuBeatmap[] GetBeatmap(
Nullable<long> _id = null,
bool _isSet = true,
Nullable<DateTime> _since = null,
string _u = null,
Nullable<mode> _m = null,
Nullable<conv> _a = null,
string _h = null,
Nullable<int> _limit = null
)
Public Function GetBeatmap (
Optional _id As Nullable(Of Long) = Nothing,
Optional _isSet As Boolean = true,
Optional _since As Nullable(Of DateTime) = Nothing,
Optional _u As String = Nothing,
Optional _m As Nullable(Of mode) = Nothing,
Optional _a As Nullable(Of conv) = Nothing,
Optional _h As String = Nothing,
Optional _limit As Nullable(Of Integer) = Nothing
) As OsuBeatmap()
public:
array<OsuBeatmap^>^ GetBeatmap(
Nullable<long long> _id = nullptr,
bool _isSet = true,
Nullable<DateTime> _since = nullptr,
String^ _u = nullptr,
Nullable<mode> _m = nullptr,
Nullable<conv> _a = nullptr,
String^ _h = nullptr,
Nullable<int> _limit = nullptr
)
member GetBeatmap :
?_id : Nullable<int64> *
?_isSet : bool *
?_since : Nullable<DateTime> *
?_u : string *
?_m : Nullable<mode> *
?_a : Nullable<conv> *
?_h : string *
?_limit : Nullable<int>
(* Defaults:
let __id = defaultArg _id null
let __isSet = defaultArg _isSet true
let __since = defaultArg _since null
let __u = defaultArg _u null
let __m = defaultArg _m null
let __a = defaultArg _a null
let __h = defaultArg _h null
let __limit = defaultArg _limit null
*)
-> OsuBeatmap[]
Parameters
- _id (Optional)
- Type: SystemNullableInt64
Specify a beatmapset or beatmap id. - _isSet (Optional)
- Type: SystemBoolean
Logical switch that determine if the request is a single beatmap or a beatmapset - _since (Optional)
- Type: SystemNullableDateTime
Return all beatmaps ranked since this date. Must be a MySQL date. - _u (Optional)
- Type: SystemString
Specify a user or a username to return metadata from. - _m (Optional)
- Type: SystemNullablemode
Mode (0 = osu!, 1 = Taiko, 2 = CtB, 3 = osu!mania). Optional, maps of all modes are returned by default. - _a (Optional)
- Type: SystemNullableconv
Specify whether converted beatmaps are included (0 = not included, 1 = included). Only has an effect if m is chosen and not 0. Converted maps show their converted difficulty rating. Optional, default is 0. - _h (Optional)
- Type: SystemString
The beatmap hash. It can be used, for instance, if you're trying to get what beatmap has a replay played in, as .osr replays only provide beatmap hashes (example of hash: a5b99395a42bd55bc5eb1d2411cbdf8b). Optional, by default all beatmaps are returned independently from the hash. - _limit (Optional)
- Type: SystemNullableInt32
Amount of results. Optional, default and maximum are 500.
Return Value
Type:
OsuBeatmapFetch Beatmap.
See Also