예제 #1
0
        /// <summary>
        /// Ensures that the object's fields and children are
        /// pre-loaded before any updates or reads.
        /// </summary>
        public void EnsurePreLoad()
        {
            if (!isPlaceHolder)
            {
                return;
            }

            GreyFoxKeywordManager._fill(this);
            isPlaceHolder = false;
        }
예제 #2
0
 public GreyFoxKeyword(string connectionString, int id)
 {
     this.iD = id;
     this.connectionString = connectionString;
     isSynced = GreyFoxKeywordManager._fill(this);
 }