Ejemplo n.º 1
0
 /// <summary>
 /// Verifica se a entrada está bloqueada.
 /// </summary>
 /// <returns></returns>
 public bool IsItemLocked()
 {
     lock (this)
     {
         return(((LockExpiration == null) || !LockExpiration.HasExpired()) && Flag.IsAnyBitSet(0x40));
     }
 }
Ejemplo n.º 2
0
 /// <summary>
 /// Verifica se a instancia está com lock.
 /// </summary>
 /// <param name="lockId"></param>
 /// <param name="lockDate"></param>
 /// <returns></returns>
 public bool IsLocked(ref object lockId, ref DateTime lockDate)
 {
     lock (this)
     {
         if (this.Flag.IsAnyBitSet(0x40))
         {
             if ((LockExpiration == null) || !LockExpiration.HasExpired())
             {
                 lockId   = this.LockId;
                 lockDate = this.LockDate;
                 return(true);
             }
             this.ReleaseLock();
             return(false);
         }
         return(false);
     }
 }