Ejemplo n.º 1
0
        /// <summary>
        /// Releases all managed resources used by the current instance of the <see cref="SqlSnapshotStore"/> class.
        /// </summary>
        public void Dispose()
        {
            if (disposed)
            {
                return;
            }

            disposed = true;

            if (useAsyncWrite)
            {
                buffer.Dispose();
            }
        }