QueryInt() public abstract method

public abstract QueryInt ( ) : System.Int64
return System.Int64
コード例 #1
0
ファイル: NFCElement.cs プロジェクト: xubingyue/NFrame
        public override Int64 QueryInt(string strName)
        {
            NFIProperty xProperty = GetPropertyManager().GetProperty(strName);

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

            return(0);
        }
コード例 #2
0
ファイル: NFCObject.cs プロジェクト: xubingyue/NFrame
        public override Int64 QueryPropertyInt(string strPropertyName)
        {
            NFIProperty property = mPropertyManager.GetProperty(strPropertyName);

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

            return(0);
        }