public bool IsRegistered(Type type)
 {
     lock (_registrations)
     {
         if (_registrations.ContainsKey(type))
         {
             return(true);
         }
     }
     return(RemoteObject.IsRegistered(type));
 }