コード例 #1
0
ファイル: AFCObject.cs プロジェクト: cpiqq/ArkClient_Core
        public override AFIDENTID QueryPropertyObject(string strPropertyName)
        {
            AFIProperty property = mPropertyManager.GetProperty(strPropertyName);

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

            return(new AFIDENTID());
        }
コード例 #2
0
ファイル: AFCElement.cs プロジェクト: cpiqq/ArkClient_Core
        public override AFIDENTID QueryObject(string strName)
        {
            AFIProperty xProperty = GetPropertyManager().GetProperty(strName);

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

            return(new AFIDENTID());
        }