I know there's a way, I know I've done it (a long time) before, but I can't remember or find out how to do it!!!

var otherDomain = AppDomain.Create("Lol my memory sucks");
var myRemotableType = typeof(MyTypeThatExtendsMBRO);
var proxy = otherDomain
    .CreateInstanceAndUnwrap(
      type.Assembly.FullName, 
      type.FullName);
// how do you do this next step???
bool isProxy = IsYouIsOrIsYouAintAProxy(proxy);
link|improve this question

I love the self-descriptive code there. +1 :) – Doug Feb 1 '11 at 21:03
feedback

1 Answer

up vote 5 down vote accepted

I think that you are looking for the RemotingServices.IsTransparentProxy() method.

link|improve this answer
DING DING DING! – Will Mar 18 '10 at 16:19
feedback

Your Answer

 
or
required, but never shown

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