Example #1
0
 /// <inheritdoc/>
 public bool Unlock()
 {
     CheckDisposed();
     try
     {
         disk.Unlock();
         return(true);
     }
     catch (Win32Exception)
     {
         return(false);
     }
 }