IVsShell::UnadviseBroadcastMessages Method (UInt32)

 

Disables clients from receiving messages typically broadcast only to the main application window.

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

int UnadviseBroadcastMessages(
	unsigned int dwCookie
)

Parameters

dwCookie
Type: System::UInt32

[in] Abstract handle used to unadvise the client of broadcast messages in the environment.

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 IVsShell::UnadviseBroadcastMessages(
   [in] VSCOOKIE dwCookie
);

The dwCookie is the same cookie returned by the call to AdviseBroadcastMessages.

Return to top
Show: