System.Runtime.Remoting.DomainSpecificRemotingData.DomainSpecificRemotingData C# (CSharp) Method

DomainSpecificRemotingData() private method

private DomainSpecificRemotingData ( ) : System.Runtime.Remoting.Activation
return System.Runtime.Remoting.Activation
        internal DomainSpecificRemotingData()
        {            
            _flags = 0;
            _ConfigLock = new Object();
            _ChannelServicesData = new ChannelServicesData();
            _IDTableLock = new ReaderWriterLock();

            // Add the Lifetime service property to the appdomain.
            // For now we are assuming that this is the only property
            // If there are more properties, then an existing array
                        // will need to be expanded to add this property
                        // The property needs to be added here so that the default context
                        // for an appdomain has lifetime services activated

            _appDomainProperties = new IContextProperty[1];
            _appDomainProperties[0] = new System.Runtime.Remoting.Lifetime.LeaseLifeTimeServiceProperty();
        }
DomainSpecificRemotingData