Lando.LowLevel.LowLevelCardReader.Dispose C# (CSharp) Method

Dispose() protected method

The virtual dispose method that allows classes inherithed from this one to dispose their resources.
protected Dispose ( bool disposing ) : void
disposing bool
return void
        protected virtual void Dispose(bool disposing)
        {
            if (!_disposed)
            {
                if (disposing)
                {
                    // Dispose managed resources here.
                }

                ReleaseAllContexts();
            }

            _disposed = true;
        }

Same methods

LowLevelCardReader::Dispose ( ) : void