enum EVerb

HTTP defines a set of request methods (also called HTTP Verbs) to indicate the desired action to be performed for a given resource. This enumeration defines the set of the available verbs for HTTP activities.


Properties

Get = 0

The GET method requests a representation of the specified resource. Requests using GET should only retrieve data.


Post = 1

The POST method is used to submit an entity to the specified resource, often causing a change in state or side effects on the server.


Put = 2

The PUT method replaces all current representations of the target resource with the request payload.