HttpRequestMethod Enumeration |
Enumeration of Http methods that could be use to request the content
Namespace:
Openfin.Desktop
Assembly:
OpenfinDesktop (in OpenfinDesktop.dll) Version: 17.6.0
Syntax public enum HttpRequestMethod
Members
| Member name | Value | Description |
---|
| Get | 0 |
Retrieves the information or entity that is identified by the URI of the request.
|
| Head | 1 |
Retrieves the message headers for the information or entity that is identified by the URI of the request.
|
| Post | 2 |
Posts a new entity as an addition to a URI.
|
| Put | 3 |
Replaces an entity that is identified by a URI.
|
| Delete | 4 |
Requests that a specified URI be deleted.
|
| Trace | 5 |
Invokes a remote, application-layer loopback of the request message.
|
| Connect | 6 |
Connect to a proxy that can dynamically switch to being a tunnel.
|
| Options | 7 |
Returns the HTTP methods that the server supports.
|
See Also