mirror of
https://github.com/ppy/osu.git
synced 2024-11-11 11:37:28 +08:00
Add xmldoc for chat ack request
This commit is contained in:
parent
22d8a1160e
commit
f343ba6111
@ -7,6 +7,17 @@ using osu.Game.Online.API.Requests.Responses;
|
||||
|
||||
namespace osu.Game.Online.API.Requests
|
||||
{
|
||||
/// <summary>
|
||||
/// A request which should be sent occasionally while interested in chat and online state.
|
||||
///
|
||||
/// This will:
|
||||
/// - Mark the user as "online" (for 10 minutes since the last invocation).
|
||||
/// - Return any silences since the last invocation (if either <see cref="SinceMessageId"/> or <see cref="SinceSilenceId"/> is not null).
|
||||
///
|
||||
/// For silence handling, a <see cref="SinceMessageId"/> should be provided as soon as a message is received by the client.
|
||||
/// From that point forward, <see cref="SinceSilenceId"/> should be preferred after the first <see cref="ChatSilence"/>
|
||||
/// arrives in a response from the ack request. Specifying both parameters will prioritise the latter.
|
||||
/// </summary>
|
||||
public class ChatAckRequest : APIRequest<ChatAckResponse>
|
||||
{
|
||||
public long? SinceMessageId;
|
||||
|
Loading…
Reference in New Issue
Block a user