public void Respond(InteractionCallbackType callbackType, InteractionResponseProperties properties      = null) => RespondAsync(callbackType, properties).GetAwaiter().GetResult();
Beispiel #2
0
 public static Task RespondToInteractionAsync(this DiscordClient client, ulong interactionId, string interactionToken, InteractionCallbackType callbackType, InteractionResponseProperties properties = null) =>
 client.HttpClient.PostAsync($"/interactions/{interactionId}/{interactionToken}/callback", new InteractionResponse()
 {
     Type = callbackType, Data = properties
 });
 public Task RespondAsync(InteractionCallbackType callbackType, InteractionResponseProperties properties = null) => Client.RespondToInteractionAsync(Id, Token, callbackType, properties);
Beispiel #4
0
 public static void RespondToInteraction(this DiscordClient client, ulong interactionId, string interactionToken, InteractionCallbackType callbackType, InteractionResponseProperties properties = null) =>
 client.RespondToInteractionAsync(interactionId, interactionToken, callbackType, properties);