Ejemplo n.º 1
0
 /// <summary>
 /// コンストラクタ
 /// </summary>
 public LazyModelLock(ILazyModel self, object lockObject)
     : this(self)
 {
     if (lockObject != null)
     {
         // ここからロックを開始します。
         this.debugLock = new DebugLock(lockObject, false);
     }
 }
Ejemplo n.º 2
0
 /// <summary>
 /// コンストラクタ
 /// </summary>
 public LazyModelLock(ILazyModel self, object lockObject)
     : this(self)
 {
     if (lockObject != null)
     {
         // ここからロックを開始します。
         this.debugLock = new DebugLock(lockObject, false);
     }
 }
Ejemplo n.º 3
0
        /// <summary>
        /// オブジェクトを破棄します。
        /// </summary>
        public void Dispose()
        {
            if (this.debugLock != null)
            {
                this.debugLock.Dispose();
                this.debugLock = null;
            }

            if (this.self != null)
            {
                this.self.LazyModelObject.Exit(self);
                this.self = null;
            }
        }
Ejemplo n.º 4
0
        /// <summary>
        /// オブジェクトを破棄します。
        /// </summary>
        public void Dispose()
        {
            if (this.debugLock != null)
            {
                this.debugLock.Dispose();
                this.debugLock = null;
            }

            if (this.self != null)
            {
                this.self.LazyModelObject.Exit(self);
                this.self = null;
            }
        }