You can not select more than 25 topics Topics must start with a chinese character,a letter or number, can include dashes ('-') and can be up to 35 characters long.

ParameterPreconditionAttribute.cs 403 B

7 years ago
7 years ago
123456789101112
  1. using System;
  2. using System.Threading.Tasks;
  3. namespace Discord.Commands
  4. {
  5. [AttributeUsage(AttributeTargets.Parameter, AllowMultiple = true)]
  6. public abstract class ParameterPreconditionAttribute : Attribute
  7. {
  8. public abstract Task<PreconditionResult> CheckPermissionsAsync(ICommandContext context, ParameterInfo parameter,
  9. object value, IServiceProvider services);
  10. }
  11. }