HttpMethodType Enumeration |
Represents HTTP method types.
Namespace: Ozeki.NetworkAssembly: OzekiSDK (in OzekiSDK.dll) Version: 10.4.13.0
Syntaxpublic enum HttpMethodType
Public Enumeration HttpMethodType
public enum class HttpMethodType
MembersMember 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