namespace uhttpsharp { /// /// Specifies the methods of an http request. /// public enum HttpMethods { /// /// Requests a representation of the specified resource. /// Get, /// /// Asks for the response identical to the one that would correspond to a GET request, but without the response body /// Head, /// /// Requests that the server accept the entity enclosed in the request as a new subordinate of the web resource identified by the URI /// Post, /// /// Requests that the enclosed entity be stored under the supplied URI /// Put, /// /// Deletes the specified resource. /// Delete, /// /// Echoes back the received request so that a client can see what (if any) changes or additions have been made by intermediate servers /// Trace, /// /// Returns the HTTP methods that the server supports for the specified URL /// Options, /// /// Converts the request connection to a transparent TCP/IP tunnel /// Connect, /// /// Is used to apply partial modifications to a resource /// Patch } }