Inheritance: IChannel, IChannelSender, IChannelReceiver
 internal static void RegisterCrossAppDomainChannel()
 {
     lock (s_lock)
     {
         // todo: make singleton
         CrossAppDomainChannel monocad = new CrossAppDomainChannel();
         ChannelServices.RegisterChannel((IChannel)monocad);
     }
 }
Beispiel #2
0
        internal static void RegisterCrossAppDomainChannel()
        {
            object obj = CrossAppDomainChannel.s_lock;

            lock (obj)
            {
                CrossAppDomainChannel chnl = new CrossAppDomainChannel();
                ChannelServices.RegisterChannel(chnl);
            }
        }
Beispiel #3
0
 internal static void RegisterCrossAppDomainChannel()
 {
     lock (s_lock)
     {
         // todo: make singleton
         CrossAppDomainChannel monocad = new CrossAppDomainChannel();
                         #if !DISABLE_REMOTING
         ChannelServices.RegisterChannel((IChannel)monocad);
                         #endif
     }
 }
Beispiel #4
0
		internal static void RegisterCrossAppDomainChannel() 
		{
			lock (s_lock) 
			{
				// todo: make singleton
				CrossAppDomainChannel monocad = new CrossAppDomainChannel();
				ChannelServices.RegisterChannel ((IChannel) monocad);
			}
		}		
        [System.Security.SecurityCritical]  // auto-generated
        internal static void RegisterChannel()
        {
            CrossAppDomainChannel adc = CrossAppDomainChannel.AppDomainChannel;

            ChannelServices.RegisterChannelInternal((IChannel)adc, false /*ensureSecurity*/);
        }
        internal static void RegisterChannel()
        {
            CrossAppDomainChannel adc = CrossAppDomainChannel.AppDomainChannel;

            ChannelServices.RegisterChannelInternal((IChannel)adc);
        }
        internal static void RegisterChannel()
        {
            CrossAppDomainChannel appDomainChannel = CrossAppDomainChannel.AppDomainChannel;

            ChannelServices.RegisterChannelInternal(appDomainChannel, false);
        }