InternalSetRemoteActivationConfigured() static private méthode

static private InternalSetRemoteActivationConfigured ( ) : void
Résultat void
        public static void RegisterWellKnownClientType(WellKnownClientTypeEntry entry)
        {
            RemotingConfigHandler.RegisterWellKnownClientType(entry);

            // all registrations for wellknown client types will come through here
            RemotingServices.InternalSetRemoteActivationConfigured();
        } // RegisterWellKnownClientType
        public static void Configure(String filename)
        {
            RemotingConfigHandler.DoConfiguration(filename);

            // Set a flag in the VM to mark that remoting is configured
            // This will enable us to decide if activation for MBR
            // objects should go through the managed codepath
            RemotingServices.InternalSetRemoteActivationConfigured();
        } // Configure
Exemple #3
0
 public static void Configure(string filename, bool ensureSecurity)
 {
     RemotingConfigHandler.DoConfiguration(filename, ensureSecurity);
     RemotingServices.InternalSetRemoteActivationConfigured();
 }
Exemple #4
0
 public static void RegisterWellKnownClientType(WellKnownClientTypeEntry entry)
 {
     RemotingConfigHandler.RegisterWellKnownClientType(entry);
     RemotingServices.InternalSetRemoteActivationConfigured();
 }