Contents

INNotebookDomainHandling

An interface for adopting all of the protocols in the lists and notes domain.

Declaration

protocol INNotebookDomainHandling : INAddTasksIntentHandling, INAppendToNoteIntentHandling, INCreateNoteIntentHandling, INCreateTaskListIntentHandling, INSearchForNotebookItemsIntentHandling, INSetTaskAttributeIntentHandling

Overview

The INNotebookDomainHandling protocol is a convenience protocol that adopts all of the protocols used to handle list, note, and reminder-related intents. When your app adopts all of the protocols associated with notes and reminders, you can adopt this one protocol instead of adopting the INCreateNoteIntentHandling, INAppendToNoteIntentHandling, INSearchForNotebookItemsIntentHandling, INCreateTaskListIntentHandling, INAddTasksIntentHandling, and INSetTaskAttributeIntentHandling protocols separately.

An object that adopts this protocol must be able to respond to the following intents:

Your handler object must be prepared to resolve any parameters associated with these intents and to confirm and handle the requests. When confirming and handling a request, you provide the response object that matches the specified intent.

See Also

Domain-Handling Protocols