Esempio n. 1
0
        public static void DeleteFromCache(Property property_)
        {
            string variableFullName = property_.GetVariableFullName();

            if (!string.IsNullOrEmpty(variableFullName) && Property.ms_properties.ContainsKey(variableFullName))
            {
                Property.ms_properties.Remove(variableFullName);
            }
        }
Esempio n. 2
0
        public static void DeleteFromCache(Property property_)
        {
            string pPropertyName = property_.GetVariableFullName();

            if (!string.IsNullOrEmpty(pPropertyName))
            {
                if (ms_properties.ContainsKey(pPropertyName))
                {
                    //Property pProperty = ms_properties[pPropertyName];
                    ms_properties.Remove(pPropertyName);
                }
            }
        }
Esempio n. 3
0
        public static void DeleteFromCache(Property property_)
        {
            string pPropertyName = property_.GetVariableFullName();

            if (!string.IsNullOrEmpty(pPropertyName))
            {
                if (ms_properties.ContainsKey(pPropertyName))
                {
                    //Property pProperty = ms_properties[pPropertyName];
                    ms_properties.Remove(pPropertyName);
                }
            }
        }