For AI agents: the complete documentation index is available at /llms.txt, the full documentation bundle is available at /llms-full.txt, and this page is available as Markdown at /server-net/enums/HttpRequestMethod.md.

Enumeration: HttpRequestMethod

network

Beta

Enumeration Members

Delete

实验性

Delete: "Delete"

Beta

Remarks

表示 HTTP DELETE 请求。 DELETE 通常用于描述删除指定的资源。

Represents the method for an HTTP DELETE request. DELETE requests are used to delete the specified resource from the server.


Get

实验性

Get: "Get"

Beta

Remarks

表示 HTTP GET 请求。 GET 请求通常用于获取指定资源的信息。

Represents the method for an HTTP GET request. GET requests are commonly used to retrieve data from the specified URI.


实验性

Head: "Head"

Beta

Remarks

表示 HTTP HEAD 请求。 HEAD 请求类似于 GET 请求,但通常用于仅需要获取指定资源的 HTTP 响应标头,不需要获取响应主体的情况。

Represents the method for an HTTP HEAD request. HEAD requests are similar to a GET request, but are commonly used to retrieve just the HTTP response headers from the specified URI, and not the body contents.


Patch

实验性

Patch: "Patch"

Beta

Remarks

表示 HTTP PATCH 请求。PATCH 请求通常用于对资源进行部分修改。

Represents the method for an HTTP PATCH request. PATCH requests are commonly used to apply partial modifications to a resource.


Post

实验性

Post: "Post"

Beta

Remarks

表示 HTTP POST 请求。 POST 请求通常用于在指定 URI 下创建新资源。

Represents the method for an HTTP POST request. POST requests are commonly used to submit data to be processed to the specified URI.


Put

实验性

Put: "Put"

Beta

Remarks

表示 HTTP PUT 请求。 PUT 请求通常用于更新某个已存在于资源集合中的资源。

Represents the method for an HTTP PUT request. PUT requests are commonly used to update a single resource that already exists in a resource collection.

同领域相关