123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384 |
- namespace Infrastructure.Constant
- {
- public class HttpStatus
- {
-
-
-
- public static readonly int SUCCESS = 200;
-
-
-
- public static readonly int CREATED = 201;
-
-
-
- public static readonly int ACCEPTED = 202;
-
-
-
- public static readonly int NO_CONTENT = 204;
-
-
-
- public static readonly int MOVED_PERM = 301;
-
-
-
- public static readonly int SEE_OTHER = 303;
-
-
-
- public static readonly int NOT_MODIFIED = 304;
-
-
-
- public static readonly int BAD_REQUEST = 400;
-
-
-
- public static readonly int UNAUTHORIZED = 401;
-
-
-
- public static readonly int FORBIDDEN = 403;
-
-
-
- public static readonly int NOT_FOUND = 404;
-
-
-
- public static readonly int BAD_METHOD = 405;
-
-
-
- public static readonly int CONFLICT = 409;
-
-
-
- public static readonly int UNSUPPORTED_TYPE = 415;
-
-
-
- public static readonly int ERROR = 500;
-
-
-
- public static readonly int NOT_IMPLEMENTED = 501;
- }
- }
|