InternalSetRemoteActivationConfigured() static private method

static private InternalSetRemoteActivationConfigured ( ) : void
return 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
Ejemplo n.º 3
0
 public static void Configure(string filename, bool ensureSecurity)
 {
     RemotingConfigHandler.DoConfiguration(filename, ensureSecurity);
     RemotingServices.InternalSetRemoteActivationConfigured();
 }
Ejemplo n.º 4
0
 public static void RegisterWellKnownClientType(WellKnownClientTypeEntry entry)
 {
     RemotingConfigHandler.RegisterWellKnownClientType(entry);
     RemotingServices.InternalSetRemoteActivationConfigured();
 }