コード例 #1
0
        public override Object ToServerObject()
        {
            Server.Application.CoreConfigurationObject coreConfigurationObject = new Server.Application.CoreConfigurationObject();

            MapToServerObject(coreConfigurationObject);

            return(coreConfigurationObject);
        }
コード例 #2
0
        protected void BaseConstructor(Application applicationReference, Server.Application.CoreConfigurationObject forCoreConfigurationObject)
        {
            base.BaseConstructor(applicationReference, forCoreConfigurationObject);


            enabled = forCoreConfigurationObject.Enabled;

            visible = forCoreConfigurationObject.Visible;

            return;
        }
コード例 #3
0
        public void MapToServerObject(Server.Application.CoreConfigurationObject coreConfigurationObject)
        {
            base.MapToServerObject((Server.Application.CoreExtensibleObject)coreConfigurationObject);


            coreConfigurationObject.Enabled = enabled;

            coreConfigurationObject.Visible = visible;


            return;
        }
コード例 #4
0
        public CoreConfigurationObject(Application applicationReference, Server.Application.CoreConfigurationObject forCoreConfigurationObject)
        {
            BaseConstructor(applicationReference, forCoreConfigurationObject);

            return;
        }