BINDVERB Enumeration

 

Contains values that specify an action, such as an HTTP request, to be performed during the binding operation.

Namespace:   Microsoft.VisualStudio.OLE.Interop
Assembly:  Microsoft.VisualStudio.OLE.Interop (in Microsoft.VisualStudio.OLE.Interop.dll)

public enum BINDVERB

Member nameDescription
BINDVERB_CUSTOM

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.

BINDVERB_GET

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

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

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.

Return to top
Show: