コード例 #1
0
ファイル: AFCProperty.cs プロジェクト: cpiqq/ArkClient_Core
        public override bool SetDataObject(ref AFIDataList.Var_Data value)
        {
            if (mVarProperty.GetType(0) != value.nType)
            {
                AFCDataList oldValue = new AFCDataList(mVarProperty);

                mVarProperty.SetDataObject(0, value);

                AFCDataList newValue = new AFCDataList(mVarProperty);

                if (null != doHandleDel)
                {
                    doHandleDel(mSelf, msPropertyName, oldValue, newValue);
                }
            }

            return(true);
        }
コード例 #2
0
 public abstract bool SetDataObject(ref AFIDataList.Var_Data data);