Click to return to the Networking, Protocols     
BINDSTATUS Enumerated Typ...     BSCF Enumerated Type     URL Moniker Enumerated Ty...    
Web Workshop  |  Networking, Protocols & Data Formats

BINDVERB Enumerated Type


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

Syntax

typedef enum {
    BINDVERB_GET,
    BINDVERB_POST,
    BINDVERB_PUT,
    BINDVERB_CUSTOM
} BINDVERB;

Constants

BINDVERB_GET
Perform an HTTP GET operation, the default operation. The stgmedData member of the BINDINFO structure should be set to TYMED_NULL for the GET operation.
BINDVERB_POST
Perform an HTTP POST operation. The data to be posted should be specified in the stgmedData member of the BINDINFO structure.
BINDVERB_PUT
Perform an HTTP PUT operation. The data to put should be specified in the stgmedData member of the BINDINFO structure.
BINDVERB_CUSTOM
Perform a custom operation that is protocol-specific. See the szCustomVerb member of the BINDINFO structure. The data to be used in the custom operation should be specified in the stgmedData member of the BINDINFO structure.

Remarks

Values from the BINDVERB enumeration are passed to the moniker as part of the BINDINFO structure. The moniker calls the IBindStatusCallback::OnProgress method on the client to obtain additional information about the bind operation in the BINDINFO structure.

Enumerated Type Information

Windows NT Use version 4.0
Windows Use Windows 95 and later
Header Urlmon.h
Minimum availability Internet Explorer 3.0

Windows CE

Windows CE Use version 2.12 and later
Minimum availability Internet Explorer 4.0

See Also

IBindStatusCallback::GetBindInfo



Back to topBack to top

Did you find this topic useful? Suggestions for other topics? Write us!

© 1999 Microsoft Corporation. All rights reserved. Terms of use.