Exemplo n.º 1
0
        /// <inheritdoc />
        public int GetAttrib(IntPtr attributeId, byte[] receiveBuffer, int receiveBufferSize)
        {
            var handle = CardHandle.Handle;

            _api.GetAttrib(handle, attributeId, receiveBuffer, receiveBufferSize, out var attributeLength)
            .ThrowIfNotSuccess();
            return(attributeLength);
        }