An enumeration of integer values representing Http Request Methods.
The Http.Method values represent the method used in Http.Request.method.
Get = 1 | Method to request data. |
Post = 3 | Method to create or replace a target resource with specified data. Is not idempotent. |
Put = 2 | Method to create or replace a target resource with specified data. Is idempotent. |
static readonly int Post = 3
Method to create or replace a target resource with specified data. Is not idempotent.
static readonly int Put = 2
Method to create or replace a target resource with specified data. Is idempotent.