cs-codex-dist-tests/Tools/BiblioTech/Options/CommandContext.cs

34 lines
987 B
C#
Raw Normal View History

2023-10-24 13:25:45 +00:00
using Discord.WebSocket;
namespace BiblioTech.Options
{
public class CommandContext
{
public CommandContext(SocketSlashCommand command, IReadOnlyCollection<SocketSlashCommandDataOption> options)
{
Command = command;
Options = options;
}
public SocketSlashCommand Command { get; }
public IReadOnlyCollection<SocketSlashCommandDataOption> Options { get; }
2023-10-25 08:54:26 +00:00
public async Task Followup(string message)
{
await Command.ModifyOriginalResponseAsync(m =>
{
m.Content = message;
});
2023-10-25 08:54:26 +00:00
}
public async Task FollowupWithAttachement(string filename, string content)
2023-10-25 08:54:26 +00:00
{
using var fileStream = new MemoryStream();
using var streamWriter = new StreamWriter(fileStream);
await streamWriter.WriteAsync(content);
await Command.FollowupWithFileAsync(fileStream, filename);
2023-10-25 08:54:26 +00:00
}
2023-10-24 13:25:45 +00:00
}
}