public IReadOnlyList <byte> GetAttribiute(Attribiutes attribiuteId)
        {
            WinSCardWrapper.GetAttrib(Handle, attribiuteId, ref _buffer, out var dataSize);

            return((IReadOnlyList <byte>)_buffer.Take(dataSize));
        }