From 906df00e597f7f2568d4268365f1e575a4b67ea7 Mon Sep 17 00:00:00 2001 From: Filip Strajnar Date: Wed, 27 Mar 2024 16:28:28 +0100 Subject: [PATCH] Added some XML doc comments. --- DiscordClient/DiscordUserClient.cs | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/DiscordClient/DiscordUserClient.cs b/DiscordClient/DiscordUserClient.cs index d91d412..7a9a3cb 100644 --- a/DiscordClient/DiscordUserClient.cs +++ b/DiscordClient/DiscordUserClient.cs @@ -54,6 +54,15 @@ public class DiscordUserClient return await _httpClient.DeleteAsync(url); } + /// + /// This method returns some of most recent messages, sent to a guild. + /// + /// Guild ID from which we're gathering messages. + /// + /// Optional author ID. If specified, gather only + /// recent messages from this particular author. + /// + /// public async Task SearchGuildMessages( string guildId, string? authorId = null