System.Runtime.Remoting.Activation.RemotePropertyHolderAttribute.GetPropertiesForNewContext C# (CSharp) Method

GetPropertiesForNewContext() private method

private GetPropertiesForNewContext ( IConstructionCallMessage ctorMsg ) : void
ctorMsg IConstructionCallMessage
return void
        public virtual void GetPropertiesForNewContext(IConstructionCallMessage ctorMsg)
        {
            for (int i=0; i<_cp.Count; i++)
            {
                // Just cycle through the list and add the properties to 
                // the construction message.
                // We will throw at a later stage if any of these do not
                // implement IContextProperty
                ctorMsg.ContextProperties.Add(_cp[i]);
            }
        }
    }