-
Notifications
You must be signed in to change notification settings - Fork 0
288c4a9d ba93 2792 d988 3a7d20c8e7a3
Mat Walker edited this page Apr 17, 2020
·
1 revision
[This is preliminary documentation and is subject to change.]
Possible HTTP Methods
Namespace: TeamControlium.NonGUI
Assembly: TeamControlium.NonGUI (in TeamControlium.NonGUI.dll) Version: 2.0.0
C#
public enum HTTPMethods
Member name | Value | Description | |
---|---|---|---|
Post | 0 | HTTP GET Method defined when building Request Header. 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. | |
Get | 1 | HTTP POST Method defined when building Request Header. The GET method requests a representation of the specified resource. Requests using GET should only retrieve data | |
Head | 2 | HTTP HEAD Method defined when building Request Header. The HEAD method asks for a response identical to that of a GET request, but without the response body. | |
Put | 3 | HTTP PUT Method defined when building Request Header. The PUT method replaces all current representations of the target resource with the request payload. | |
Delete | 4 | HTTP DELETE Method defined when building Request Header. The DELETE method deletes the specified resource. | |
Connect | 5 | HTTP CONNECT Method defined when building Request Header. The CONNECT method establishes a tunnel to the server identified by the target resource. | |
Options | 6 | HTTP OPTIONS Method defined when building Request Header. The OPTIONS method is used to describe the communication options for the target resource. | |
Trace | 7 | HTTP TRACE Method defined when building Request Header. The TRACE method performs a message loop-back test along the path to the target resource. | |
Patch | 8 | HTTP PATCH Method defined when building Request Header. The PATCH method is used to apply partial modifications to a resource. |
- TeamControlium Namespace
-
TeamControlium.NonGUI Namespace
-
HTTPBased Class
- HTTPBased Constructor
-
HTTPBased Properties
- HTTPBased.Body Property
- HTTPBased.CertificateValidationCallback Property
- HTTPBased.ClientCertificate Property
- HTTPBased.Domain Property
- HTTPBased.HeaderList Property
- HTTPBased.HeaderString Property
- HTTPBased.HTTPMethod Property
- HTTPBased.QueryList Property
- HTTPBased.QueryString Property
- HTTPBased.ResourcePath Property
- HTTPBased.ResponseRaw Property
- HTTPBased.TryException Property
- HTTPBased.UseSSL Property
- HTTPBased Methods
- HTTPBased.HTTPMethods Enumeration
- HTTPBased.ItemList Class
- TCPBased Class
-
HTTPBased Class