Returns the binding options stored in this bind context.
HRESULT GetBindOptions(
BIND_OPTS *pbindopts //Pointer to a structure
);
This method supports the standard return value E_UNEXPECTED, as well as the following:
A bind context contains a block of parameters, stored in a BIND_OPTS structure, that are common to most IMoniker operations and that do not change as the operation moves from piece to piece of a composite moniker.
You typically call this method if you are writing your own moniker class (this requires that you implement the IMoniker interface). You call this method to retrieve the parameters specified by the moniker client.
You must initialize the BIND_OPTS structure that is filled in by this method. Before calling this method, you must initialize the cbStruct field of the structure to the size of the BIND_OPTS structure.
Windows NT: Use version 3.1 or later.
Windows: Use Windows 95 or later.
Windows CE: Unsupported.
Header: Declared in objidl.h.