CosRequestMethod.cs 419 B

12345678910111213141516171819202122
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Text;
  4. namespace COSXML.Common
  5. {
  6. public sealed class CosRequestMethod
  7. {
  8. public const string GET = "GET";
  9. public const string POST = "POST";
  10. public const string PUT = "PUT";
  11. public const string DELETE = "DELETE";
  12. public const string HEAD = "HEAD";
  13. public const string OPTIONS = "OPTIONS";
  14. }
  15. }