RegisterWellKnownClientType() private méthode

private RegisterWellKnownClientType ( Type type, String objectUrl ) : void
type System.Type
objectUrl String
Résultat void
Exemple #1
0
 internal static void RegisterTypes(ArrayList types)
 {
     foreach (object obj in types)
     {
         TypeEntry typeEntry = (TypeEntry)obj;
         if (typeEntry is ActivatedClientTypeEntry)
         {
             RemotingConfiguration.RegisterActivatedClientType((ActivatedClientTypeEntry)typeEntry);
         }
         else if (typeEntry is ActivatedServiceTypeEntry)
         {
             RemotingConfiguration.RegisterActivatedServiceType((ActivatedServiceTypeEntry)typeEntry);
         }
         else if (typeEntry is WellKnownClientTypeEntry)
         {
             RemotingConfiguration.RegisterWellKnownClientType((WellKnownClientTypeEntry)typeEntry);
         }
         else if (typeEntry is WellKnownServiceTypeEntry)
         {
             RemotingConfiguration.RegisterWellKnownServiceType((WellKnownServiceTypeEntry)typeEntry);
         }
     }
 }
Exemple #2
0
        public static void RegisterWellKnownClientType(Type type, string objectUrl)
        {
            WellKnownClientTypeEntry entry = new WellKnownClientTypeEntry(type, objectUrl);

            RemotingConfiguration.RegisterWellKnownClientType(entry);
        }
        public static void RegisterWellKnownClientType(Type type, String objectUrl)
        {
            WellKnownClientTypeEntry wke = new WellKnownClientTypeEntry(type, objectUrl);

            RemotingConfiguration.RegisterWellKnownClientType(wke);
        } // RegisterWellKnownClientType