コード例 #1
0
        /// <summary>
        ///     Respond to an interaction with a <see cref="IModal"/>.
        /// </summary>
        /// <typeparam name="T">Type of the <see cref="IModal"/> implementation.</typeparam>
        /// <param name="interaction">The interaction to respond to.</param>
        /// <param name="options">The request options for this <see langword="async"/> request.</param>
        /// <returns>Serialized payload to be used to create a HTTP response.</returns>
        public static string RespondWithModal <T>(this RestInteraction interaction, string customId, RequestOptions options = null, Action <ModalBuilder> modifyModal = null)
            where T : class, IModal
        {
            if (!ModalUtils.TryGet <T>(out var modalInfo))
            {
                throw new ArgumentException($"{typeof(T).FullName} isn't referenced by any registered Modal Interaction Command and doesn't have a cached {typeof(ModalInfo)}");
            }

            var modal = modalInfo.ToModal(customId, modifyModal);

            return(interaction.RespondWithModal(modal, options));
        }
コード例 #2
0
ファイル: GuildHelper.cs プロジェクト: xXBuilderBXx/DNetPlus
        public static async Task <IReadOnlyCollection <RestInteraction> > GetCommandsAsync(IGuild guild, BaseDiscordClient client, RequestOptions options)
        {
            IReadOnlyCollection <Interaction_Json> data = await client.ApiClient.GetGuildCommandsAsync(guild.Id, options).ConfigureAwait(false);

            return(data.Select(x => RestInteraction.Create(x)).ToImmutableArray());
        }
コード例 #3
0
ファイル: GuildHelper.cs プロジェクト: xXBuilderBXx/DNetPlus
        //Interactions
        public static async Task <RestInteraction> CreateCommandAsync(IGuild guild, BaseDiscordClient client, CreateInteraction interaction, RequestOptions options)
        {
            Interaction_Json data = await client.ApiClient.CreateGuildCommandAsync(guild.Id, interaction, options).ConfigureAwait(false);

            return(RestInteraction.Create(data));
        }