---
title: "sendCommand(apdu:completionHandler:)"
framework: corenfc
role: symbol
role_heading: Instance Method
path: "corenfc/nfciso7816tag/sendcommand(apdu:completionhandler:)"
---

# sendCommand(apdu:completionHandler:)

Sends an application protocol data unit (APDU) to the tag and receives a response APDU.

## Declaration

```swift
func sendCommand(apdu: NFCISO7816APDU, completionHandler: @escaping @Sendable (Data, UInt8, UInt8, (any Error)?) -> Void)
```

```swift
func sendCommand(apdu: NFCISO7816APDU) async throws -> (Data, UInt8, UInt8)
```

## Parameters

- `apdu`: An application protocol data unit to send to the tag.
- `completionHandler`: A handler that the reader session invokes after the operation completes. The handler has the following parameters:

## Discussion

Discussion When you send a SELECT command with a p1Parameter value of 0x04, your app must support one of the applications listed in the ISO7816 application identifiers for NFC Tag Reader Session property list key. Otherwise, the completionHandler receives an NFCReaderError.Code.readerErrorSecurityViolation error. The session calls completionHandler on the dispatch queue that you provided when creating the NFCTagReaderSession object.

## See Also

### Sending a Command

- [sendCommand(apdu:resultHandler:)](corenfc/nfciso7816tag/sendcommand(apdu:resulthandler:).md)
- [NFCISO7816APDU](corenfc/nfciso7816apdu.md)
- [NFCISO7816ResponseAPDU](corenfc/nfciso7816responseapdu.md)
