3 implementations of CanCastTo
mscorlib (2)
system\runtime\remoting\objref.cs (1)
110public virtual bool CanCastTo(Type castType, Object o)
system\runtime\remoting\remotingproxy.cs (1)
639public bool CanCastTo(Type castType, Object o)
System.ServiceModel (1)
System\ServiceModel\Channels\ServiceChannelProxy.cs (1)
387bool IRemotingTypeInfo.CanCastTo(Type toType, object o)
4 references to CanCastTo
mscorlib (3)
system\runtime\remoting\remotingproxy.cs (1)
676fCastOK = typeInfo.CanCastTo(rtType, oTP);
system\runtime\remoting\remotingservices.cs (2)
1755fCastOK = typeInfo.CanCastTo(castType, rp.GetTransparentProxy()); 1770fCastOK = typeInfo.CanCastTo(castType, rp.GetTransparentProxy());
System.ServiceModel (1)
System\ServiceModel\ComIntegration\TearOffProxy.cs (1)
54if (typeInfo.CanCastTo(typeMethod.DeclaringType, null))