Standard HTTP Method
Namespace:
Hummingbird.TestFramework.Services
Assembly:
Hummingbird.TestFramework (in Hummingbird.TestFramework.dll) Version: 1.2.0.0
Syntax Public Enumeration HttpMethod
public enum class HttpMethod
Members
| Member name | Value | Description |
---|
| OPTIONS | 0 |
OPTIONS
|
| GET | 1 |
GET
|
| HEAD | 2 |
HEAD
|
| POST | 3 |
POST
|
| PUT | 4 |
PUT
|
| DELETE | 5 |
DELETE
|
| TRACE | 6 |
TRACE
|
| CONNECT | 7 |
CONNECT
|
| PATCH | 8 |
PATCH
|
| EXTENDED | 9 |
Indicate EXTENDED when non standard HTTP method should be used.
|
| ANY | 10 |
Indicate any http method is accepted, This value cannot be used during the test, it is only used for set service simulation for HTTP
|
See Also