mirror of
https://github.com/ppy/osu.git
synced 2024-11-12 00:27:25 +08:00
32 lines
855 B
C#
32 lines
855 B
C#
|
// Copyright (c) 2007-2018 ppy Pty Ltd <contact@ppy.sh>.
|
||
|
// Licensed under the MIT Licence - https://raw.githubusercontent.com/ppy/osu/master/LICENCE
|
||
|
|
||
|
using System.Net.Http;
|
||
|
using osu.Framework.IO.Network;
|
||
|
using osu.Game.Online.Multiplayer;
|
||
|
using osu.Game.Users;
|
||
|
|
||
|
namespace osu.Game.Online.API.Requests
|
||
|
{
|
||
|
public class PartRoomRequest : APIRequest
|
||
|
{
|
||
|
private readonly Room room;
|
||
|
private readonly User user;
|
||
|
|
||
|
public PartRoomRequest(Room room, User user)
|
||
|
{
|
||
|
this.room = room;
|
||
|
this.user = user;
|
||
|
}
|
||
|
|
||
|
protected override WebRequest CreateWebRequest()
|
||
|
{
|
||
|
var req = base.CreateWebRequest();
|
||
|
req.Method = HttpMethod.Delete;
|
||
|
return req;
|
||
|
}
|
||
|
|
||
|
protected override string Target => $"rooms/{room.RoomID.Value}/users/{user.Id}";
|
||
|
}
|
||
|
}
|