How can I find out if an instance is a MarshalByRef proxy?

189 Views Asked by At

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);
1

There are 1 best solutions below

0
On BEST ANSWER

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