Skip to Main Content
Visual Studio Hacks
book

Visual Studio Hacks

by James Avery
March 2005
Intermediate to advanced content levelIntermediate to advanced
304 pages
19h 23m
English
O'Reilly Media, Inc.
Content preview from Visual Studio Hacks
Access Visual Studio from Standalone Applications #87
Chapter 12, Extending Visual Studio
|
387
HACK
It is a good idea to always use this method when accessing EnvDTE—while
you may have only one version of Visual Studio installed on your machine,
other users may have any number of versions installed.
The Notorious “Call Was Rejected by Callee” Error
While working with EnvDTE, you will most likely come across random occur-
rences of “Call was rejected by callee” errors. The key to avoiding this error
lies in using an OLE message filter. The filter will watch all calls, and when
one fails, it will wait and try again instead of throwing this error. The follow-
ing OLE message filter will watch for any calls and then retry them instead
of throwing an exception:
using System;
using System.Runtime.InteropServices;
class MessageFilter : IOleMessageFilter
{
//
// Public API
public static void Register( )
{
IOleMessageFilter newfilter = new MessageFilter( );
IOleMessageFilter oldfilter = null;
CoRegisterMessageFilter(newfilter, out oldfilter);
}
public static void Revoke( )
{
IOleMessageFilter oldfilter = null;
CoRegisterMessageFilter(null, out oldfilter);
}
//
// IOleMessageFilter impl
int IOleMessageFilter.HandleInComingCall(int dwCallType,
System.IntPtr hTaskCaller,
int dwTickCount,
System.IntPtr lpInterfaceInfo)
{
System.Diagnostics.Debug.WriteLine
("IOleMessageFilter::HandleInComingCall");
return 0; ...
Become an O’Reilly member and get unlimited access to this title plus top books and audiobooks from O’Reilly and nearly 200 top publishers, thousands of courses curated by job role, 150+ live events each month,
and much more.
Start your free trial

You might also like

Microsoft Visual Studio 2015 Unleashed, Third Edition

Microsoft Visual Studio 2015 Unleashed, Third Edition

Mike Snell, Lars Powers
.Net Framework Essentials

.Net Framework Essentials

Thuan L. Thai, Hoang Lam
C# 5.0 Unleashed

C# 5.0 Unleashed

Bart De Smet
Programming .NET Security

Programming .NET Security

Adam Freeman, Allen Jones

Publisher Resources

ISBN: 0596008473Errata Page