HTTPFormUsage.cs 548 B

12345678910111213141516171819202122232425
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. namespace BestHTTP.Forms
  6. {
  7. public enum HTTPFormUsage
  8. {
  9. /// <summary>
  10. /// The plugin will try to choose the best form sending method.
  11. /// </summary>
  12. Automatic,
  13. /// <summary>
  14. /// The plugin will use the Url-Encoded form sending.
  15. /// </summary>
  16. UrlEncoded,
  17. /// <summary>
  18. /// The plugin will use the Multipart form sending.
  19. /// </summary>
  20. Multipart
  21. }
  22. }