2019-01-24 16:43:03 +08:00
|
|
|
|
// 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.
|
2018-04-14 19:32:48 +08:00
|
|
|
|
|
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
using osu.Framework.IO.Network;
|
|
|
|
|
using osu.Game.Online.Chat;
|
|
|
|
|
|
|
|
|
|
namespace osu.Game.Online.API
|
|
|
|
|
{
|
|
|
|
|
public abstract class APIMessagesRequest : APIRequest<List<Message>>
|
|
|
|
|
{
|
2018-05-07 01:54:41 +08:00
|
|
|
|
private readonly long? sinceId;
|
2018-04-14 19:32:48 +08:00
|
|
|
|
|
|
|
|
|
protected APIMessagesRequest(long? sinceId)
|
|
|
|
|
{
|
|
|
|
|
this.sinceId = sinceId;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
protected override WebRequest CreateWebRequest()
|
|
|
|
|
{
|
|
|
|
|
var req = base.CreateWebRequest();
|
|
|
|
|
|
|
|
|
|
if (sinceId.HasValue) req.AddParameter(@"since", sinceId.Value.ToString());
|
|
|
|
|
|
|
|
|
|
return req;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|