 | OsuClientGetReplay Method (mode, String, Int64, NullableInt64) |
Return all the bytes needed to create a .osr file.
Namespace:
CSharpOsu
Assembly:
CSharpOsu (in CSharpOsu.dll) Version: 1.0.0
Syntaxpublic byte[] GetReplay(
mode _m,
string _u,
long _b,
Nullable<long> _mods = null
)
Public Function GetReplay (
_m As mode,
_u As String,
_b As Long,
Optional _mods As Nullable(Of Long) = Nothing
) As Byte()
public:
array<unsigned char>^ GetReplay(
mode _m,
String^ _u,
long long _b,
Nullable<long long> _mods = nullptr
)
member GetReplay :
_m : mode *
_u : string *
_b : int64 *
?_mods : Nullable<int64>
(* Defaults:
let __mods = defaultArg _mods null
*)
-> byte[]
Parameters
- _m
- Type: CSharpOsu.Util.Enumsmode
The mode the score was played in. - _u
- Type: SystemString
The user that has played the beatmap. - _b
- Type: SystemInt64
The beatmap ID (not beatmap set ID!) in which the replay was played. - _mods (Optional)
- Type: SystemNullableInt64
Specify a mod or mod combination (See https://github.com/ppy/osu-api/wiki#mods )
Return Value
Type:
Byte.osr file bytes.
See Also