Pn532.WriteReadDirect Method

Definition

Overloads

WriteReadDirect(ReadOnlySpan<Byte>, Span<Byte>)

Write an array of data directly to the card without adding anything from the PN532 and read the raw data

WriteReadDirect(Span<Byte>, Span<Byte>)

Write an array of data directly to the card without adding anything from the PN532 and read the raw data

WriteReadDirect(ReadOnlySpan<Byte>, Span<Byte>)

Write an array of data directly to the card without adding anything from the PN532 and read the raw data

public int WriteReadDirect (ReadOnlySpan<byte> dataToSend, Span<byte> dataFromCard);
member this.WriteReadDirect : ReadOnlySpan<byte> * Span<byte> -> int
Public Function WriteReadDirect (dataToSend As ReadOnlySpan(Of Byte), dataFromCard As Span(Of Byte)) As Integer

Parameters

dataToSend
ReadOnlySpan<Byte>

The data to write to the card

dataFromCard
Span<Byte>

The potential data to receive

Returns

The number of bytes read

Applies to

WriteReadDirect(Span<Byte>, Span<Byte>)

Write an array of data directly to the card without adding anything from the PN532 and read the raw data

public int WriteReadDirect (Span<byte> dataToSend, Span<byte> dataFromCard);
member this.WriteReadDirect : Span<byte> * Span<byte> -> int
Public Function WriteReadDirect (dataToSend As Span(Of Byte), dataFromCard As Span(Of Byte)) As Integer

Parameters

dataToSend
Span<Byte>

The data to write to the card

dataFromCard
Span<Byte>

The potential data to receive

Returns

The number of bytes read

Applies to