HttpMethodType Enumeration |
Represents HTTP method types.
Namespace: Ozeki.NetworkAssembly: OzekiSDK (in OzekiSDK.dll) Version: 1.8.12.0 (1.8.12)
Syntax public enum HttpMethodType
Public Enumeration HttpMethodType
public enum class HttpMethodType
Members
| Member name | Value | Description |
---|
| GET | 0 |
Requests a representation of the specified resource. Requests using GET should only retrieve data and should have no other effect.
|
| POST | 1 |
The POST request method is used when the client needs to send data to the server as part of the request, such as when submitting a completed form.
|
See Also