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

ReleaseResource() protected method

Free the underlying JET_TABLEID.
protected ReleaseResource ( ) : void
return void
        protected override void ReleaseResource()
        {
            Api.JetCloseTable(this.sesid, this.tableid);
            this.sesid = JET_SESID.Nil;
            this.tableid = JET_TABLEID.Nil;
            this.name = null;
            this.ResourceWasReleased();
        }