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.

MultiMatchHandling.cs 471 B

12345678910111213
  1. namespace Discord.Commands
  2. {
  3. /// <summary>
  4. /// Specifies the behavior when multiple matches are found during the command parsing stage.
  5. /// </summary>
  6. public enum MultiMatchHandling
  7. {
  8. /// <summary> Indicates that when multiple results are found, an exception should be thrown. </summary>
  9. Exception,
  10. /// <summary> Indicates that when multiple results are found, the best result should be chosen. </summary>
  11. Best
  12. }
  13. }