IVsCfgProvider2::AdviseCfgProviderEvents Method (IVsCfgProviderEvents^, UInt32)

 

Registers the caller for configuration event notification.

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

int AdviseCfgProviderEvents(
	IVsCfgProviderEvents^ pCPE,
	[OutAttribute] unsigned int% pdwCookie
)

Parameters

pCPE
Type: Microsoft.VisualStudio.Shell.Interop::IVsCfgProviderEvents^

[in] Pointer to the IVsCfgProviderEvents interface to be called to provide notification of configuration events.

pdwCookie
Type: System::UInt32

[out] Pointer to a token representing the completed registration.

Return Value

Type: System::Int32

If the method succeeds, it returns S_OK. If it fails, it returns an error code.

From vsshell.idl:

HRESULT IVsCfgProvider2::AdviseCfgProviderEvents(
   [in] IVsCfgProviderEvents *pCPE,
   [out] VSCOOKIE *pdwCookie
);

AdviseCfgProviderEvents is called by the environment. The environment implements the five methods of IVsCfgProviderEvents — one for each type of configuration event. For example, when a platform name is added, the project responsible for the change calls OnPlatformNameAdded.

Return to top
Show: