System.Runtime.Remoting.RemotingServices.DomainUnloaded C# (CSharp) Method

DomainUnloaded() static private method

static private DomainUnloaded ( Int32 domainID ) : void
domainID System.Int32
return void
        internal static void DomainUnloaded(Int32 domainID)
        {
            // Remove any client side identities, presumably the driver
            // domain has released all references to proxies in the unloaded
            // domain.
            IdentityHolder.FlushIdentityTable();
            // Remove the cross domain channel sink for the unloaded domain
            CrossAppDomainSink.DomainUnloaded(domainID);
        }
RemotingServices