Click or drag to resize

OsuClientGetScore Method

Return informations about scores from a beatmap.

Namespace:  CSharpOsu
Assembly:  CSharpOsu (in CSharpOsu.dll) Version: 1.0.0
Syntax
public OsuScore[] GetScore(
	long _b,
	string _u = null,
	Nullable<mode> _m = null,
	Nullable<long> _mods = null,
	Nullable<int> _limit = null
)

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: OsuScore
Fetch Scores.
See Also