BINDVERB Enum
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Contains values that specify an action, such as an HTTP request, to be performed during the binding operation.
public enum class BINDVERB
public enum class BINDVERB
enum BINDVERB
public enum BINDVERB
type BINDVERB =
Public Enum BINDVERB
- Inheritance
-
BINDVERB
Fields
Name | Value | Description |
---|---|---|
BINDVERB_GET | 0 | Indicates that an HTTP POST operation should be performed. The data to be posted should be specified in the stgmedData of the BINDINFO structure. |
BINDVERB_POST | 1 | Indicates that an HTTP PUT operation should be performed. The data to put should be specified in the stgmedData of the BINDINFO structure. |
BINDVERB_PUT | 2 | Indicates that a protocol-specific custom operation should be performed. The data to be used in the custom operation should be specified in the stgmedData of the BINDINFO structure. See the szCustomVerb member of the BINDINFO structure. |
BINDVERB_CUSTOM | 3 | Indicates that an HTTP GET operation (the default operation) should be performed. The stgmedData member of the BINDINFO structure should be set to TYMED_NULL for the GET operation. |