public static interface Net.HttpMethods
Net.HttpRequest.
| Modifier and Type | Field and Description |
|---|---|
static String |
DELETE
The DELETE method deletes the specified resource.
|
static String |
GET
The GET method requests a representation of the specified resource.
|
static String |
HEAD
The HEAD method asks for a response identical to that of a GET request,
but without the response body.
|
static String |
PATCH
The PATCH method is used to apply partial modifications to a resource.
|
static String |
POST
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.
|
static String |
PUT
The PUT method replaces all current representations of the target
resource with the request payload.
|
static final String HEAD
static final String GET
static final String POST
static final String PUT
static final String PATCH
static final String DELETE
Copyright © 2021. All rights reserved.