* ActivatedClientTypeEntry.cs, ActivatedServiceTypeEntry.cs,
[mono.git] / mcs / class / corlib / System.Runtime.Remoting / IRemotingTypeInfo.cs
1 //
2 // System.Runtime.Remoting.IRemotingTypeInfo.cs
3 //
4 // AUthor: Duncan Mak  (duncan@ximian.com)
5 //
6 // 2002 (C) Copyright. Ximian, Inc.
7 //
8
9 using System.Reflection;
10 using System.Runtime.Remoting.Messaging;
11
12 namespace System.Runtime.Remoting {
13
14         public interface IRemotingTypeInfo
15         {
16                 string TypeName { get; set; }
17                 bool CanCastTo (Type fromType, object o);
18         }
19 }