LockingStrategy.UnlockFile C# (CSharp) Method

UnlockFile() public method

public UnlockFile ( sqlite3_file, pFile, long offset, long length ) : void
pFile sqlite3_file,
offset long
length long
return void
      public virtual void UnlockFile( sqlite3_file pFile, long offset, long length )
      {
#if !SQLITE_SILVERLIGHT
        pFile.fs.Unlock( offset, length );
#endif
      }
    }