Exemplo n.º 1
0
        public override Int64 QueryPropertyInt(string strPropertyName)
        {
            AFIProperty property = mPropertyManager.GetProperty(strPropertyName);

            if (null != property)
            {
                return(property.QueryInt());
            }

            return(0);
        }
Exemplo n.º 2
0
        public override Int64 QueryInt(string strName)
        {
            AFIProperty xProperty = GetPropertyManager().GetProperty(strName);

            if (null != xProperty)
            {
                return(xProperty.QueryInt());
            }

            return(0);
        }