Microsoft.Isam.Esent.Interop.Table.Close C# (CSharp) Method

Close() public method

Close the table.
public Close ( ) : void
return void
        public void Close()
        {
            this.CheckObjectIsNotDisposed();
            this.ReleaseResource();
        }

Usage Example

Example #1
0
 public void TestTableCloseZeroesName()
 {
     using (var table = new Table(this.sesid, this.dbid, this.tableName, OpenTableGrbit.None))
     {
         table.Close();
         Assert.AreEqual(null, table.Name);
     }
 }
All Usage Examples Of Microsoft.Isam.Esent.Interop.Table::Close