vote up 1 vote down star

How can I determine whether an object is local or remote (using C# remoting)? Both checking in local code if the object is remote or in the object if the code is executed from remote would be okay.

flag

54% accept rate

2 Answers

vote up 4 vote down check
    if(System.Runtime.Remoting.RemotingServices.IsTransparentProxy(myObject))
      Console.WriteLine("Yay - my object is a remoted object.");
    else
      Console.WriteLine("Boo - my object is not a remoted object.");

MSDN Docs on IsTransparentProxy

link|flag
I voted for this answer because it provides the MSDN documentation link about a specific FCL method, and I like to see the thoughts of the framework creators referenced. Other options might exist but Microsoft explicitly accommodated this method. – jdk Nov 2 at 21:01
vote up 0 vote down

I suppose you could look at the proxy and see if it derived from TransparentProxy

var myObj = ....;
if(myObj is TransparentProxy) 
  Console.WriteLine("I have a remote object");
else 
  Console.WriteLine("I don't think I have a remote object");
link|flag
Could you tell me some more details on how to do that? TransparentProxy seems to be an internal class and, well, very transparent. – eWolf Nov 2 at 20:41

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.