BTDB.KVDBLayer.OnDiskMemoryMappedFileCollection.File.UnmapContent C# (CSharp) Method

UnmapContent() private method

private UnmapContent ( ) : void
return void
            void UnmapContent()
            {
                if (_accessor == null) return;
                _accessor.SafeMemoryMappedViewHandle.ReleasePointer();
                _accessor.Dispose();
                _accessor = null;
                _memoryMappedFile.Dispose();
                _memoryMappedFile = null;
            }