Click or drag to resize

OsuClientGetBeatmap Method

Return information about beatmaps.

Namespace:  CSharpOsu
Assembly:  CSharpOsu (in CSharpOsu.dll) Version: 1.0.0
Syntax
public 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
)

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: OsuBeatmap
Fetch Beatmap.
See Also