C# how to know if a remote object implements an interface
Posted
by Toto
on Stack Overflow
See other posts from Stack Overflow
or by Toto
Published on 2010-05-10T14:50:41Z
Indexed on
2010/05/10
14:54 UTC
Read the original article
Hit count: 139
Hi,
Is there a way to know if a remote object implements an interface (I cannot change/add methods to the remote object).
Indeed I cannot use a IsAssignableFrom nor the "as" to test since it's a remote object. Then I have an exception when I try to call a non implemented methods.
Thx
© Stack Overflow or respective owner