2.2.2.2 TypeInfo

TypeInfo is a Class. The Library name of the Class is "mscorlib". It contains information about the Server Type and is used in an ObjRef class.

 namespace System.Runtime.Remoting
 {
   class TypeInfo
   {
     String   serverType;
     String[] serverHierarchy;
     String[] interfacesImplemented;
   }
 }
  

serverType: A String value that identifies the Server Type. The format of the String value is specified as QualifiedTypeName in section TypeName.

serverHierarchy: An Array of String values that identifies the Base Classes of the Server Type. The format of the String is specified as QualifiedTypeName in section TypeName.

interfacesImplemented: An Array of String that identifies the Server Interfaces implemented by Server Type. The format of the String value is specified as QualifiedTypeName in section TypeName.