Exemplo n.º 1
0
 protected ValueTask <IUserMessage> ReplyAsync(string key, ReplyType replyType, ILocalisable <EmbedBuilder> embedable, params object[] values)
 => ReplyAsync(key, replyType, Embedable.FromEmbed(embedable), values);
Exemplo n.º 2
0
 protected ValueTask <IUserMessage> ReplyAsync(string key, ILocalisable <EmbedBuilder> embedable)
 => ReplyAsync(key, Embedable.FromEmbed(embedable));
Exemplo n.º 3
0
 protected ValueTask <IUserMessage> ReplyAsync(string key, ReplyType replyType, Embedable embedable)
 => ReplyAsync(new LocalisedString(key, replyType), embedable);
Exemplo n.º 4
0
 protected ValueTask <IUserMessage> ReplyAsync(string key, ReplyType replyType, Embedable embedable, params object[] values)
 => ReplyAsync(new LocalisedString(key, replyType, values), embedable);
Exemplo n.º 5
0
 protected ValueTask <IUserMessage> ReplyAsync(Embedable embedable)
 => ReplyAsync((IEmbedable)embedable);