Discuss this help topic in SecureBlackbox Forum
Defines possible HTTP methods as defined in RFC #2616.
Declaration
[C#/Java]
enum TSBHTTPMethod { hmGet = 0, hmPost = 1, hmHead = 2, hmOptions = 3, hmDelete = 4, hmTrace = 5, hmPut = 6, hmConnect = 7, hmCustom = 8 };
[VB.NET]
Enum TSBHTTPMethod
hmGet = 0
hmPost = 1
hmHead = 2
hmOptions = 3
hmDelete = 4
hmTrace = 5
hmPut = 6
hmConnect = 7
hmCustom = 8
End Enum
[Pascal]
TSBHTTPMethod = (hmGet, hmPost, hmHead, hmOptions, hmDelete, hmTrace, hmPut, hmConnect, hmCustom);
[C++]
typedef uint8_t TSBHTTPMethodRaw;
typedef enum { hmGet = 0, hmPost = 1, hmHead = 2, hmOptions = 3, hmDelete = 4, hmTrace = 5, hmPut = 6, hmConnect = 7, hmCustom = 8 } TSBHTTPMethod;
Description
Possible values:
Declared in
.NET:
- Namespace: SBHTTPSCommon
- Assembly: SecureBlackbox.HTTPCommon
VCL:Java:
- Package: SecureBlackbox.HTTPCommon.jar
C++:
Discuss this help topic in SecureBlackbox Forum