---
title: INCancelWorkoutIntentHandling
framework: intents
role: symbol
role_heading: Protocol
path: intents/incancelworkoutintenthandling
---

# INCancelWorkoutIntentHandling

The interface that handles requests to cancel a workout.

## Declaration

```swift
protocol INCancelWorkoutIntentHandling : NSObjectProtocol
```

## Overview

Overview Use the methods of the INCancelWorkoutIntentHandling protocol to resolve, confirm, and handle requests to cancel a workout using your app. Adopt this protocol in an object of your Intents extension capable of validating the workout name. You don’t actually cancel the workout from your Intents extension. When your handle(intent:completion:) returns, SiriKit launches your app and passes it an NSUserActivity object that contains the cancel workout intent object and your response. Your app uses the information in those objects to handle the cancellation.

## Topics

### Resolving the Intent Parameters

- [resolveWorkoutName(for:with:)](intents/incancelworkoutintenthandling/resolveworkoutname(for:with:).md)

### Confirming the Response

- [confirm(intent:completion:)](intents/incancelworkoutintenthandling/confirm(intent:completion:).md)

### Handling the Intent

- [handle(intent:completion:)](intents/incancelworkoutintenthandling/handle(intent:completion:).md)

## Relationships

### Inherits From

- [NSObjectProtocol](objectivec/nsobjectprotocol.md)

### Inherited By

- [INWorkoutsDomainHandling](intents/inworkoutsdomainhandling.md)

## See Also

### Cancel a Workout

- [INCancelWorkoutIntent](intents/incancelworkoutintent.md)
- [INCancelWorkoutIntentResponse](intents/incancelworkoutintentresponse.md)
