mirror of
https://github.com/ppy/osu.git
synced 2024-11-07 00:27:26 +08:00
24 lines
762 B
C#
24 lines
762 B
C#
// Copyright (c) ppy Pty Ltd <contact@ppy.sh>. Licensed under the MIT Licence.
|
|
// See the LICENCE file in the repository root for full licence text.
|
|
|
|
using osu.Framework.IO.Network;
|
|
using osu.Framework.Extensions.IEnumerableExtensions;
|
|
using osu.Game.Online.API.Requests;
|
|
|
|
namespace osu.Game.Extensions
|
|
{
|
|
public static class WebRequestExtensions
|
|
{
|
|
/// <summary>
|
|
/// Add a pagination cursor to the web request in the format required by osu-web.
|
|
/// </summary>
|
|
public static void AddCursor(this WebRequest webRequest, Cursor cursor)
|
|
{
|
|
cursor?.Properties.ForEach(x =>
|
|
{
|
|
webRequest.AddParameter("cursor[" + x.Key + "]", x.Value.ToString());
|
|
});
|
|
}
|
|
}
|
|
}
|