CClash.FileCacheStore.Dispose C# (CSharp) Method

Dispose() public method

public Dispose ( ) : void
return void
        public void Dispose()
        {
            if (mtx != null)
            {
                mtx.Dispose();
            }
        }
    }

Usage Example

 protected virtual void Dispose(bool disposing)
 {
     if (disposing)
     {
         if (stats != null)
         {
             stats.Dispose();
         }
         if (includeCache != null)
         {
             includeCache.Dispose();
         }
         if (outputCache != null)
         {
             outputCache.Dispose();
         }
     }
 }