IINMessagesDomainHandling Interface

Definition

Interface combining several interfaces related to various Message-related intents.

[Foundation.Protocol(Name="INMessagesDomainHandling", WrapperType=typeof(Intents.INMessagesDomainHandlingWrapper))]
[ObjCRuntime.Introduced(ObjCRuntime.PlatformName.iOS, 10, 0, ObjCRuntime.PlatformArchitecture.All, null)]
[ObjCRuntime.Introduced(ObjCRuntime.PlatformName.WatchOS, 3, 2, ObjCRuntime.PlatformArchitecture.All, null)]
[ObjCRuntime.Unavailable(ObjCRuntime.PlatformName.MacOSX, ObjCRuntime.PlatformArchitecture.All, null)]
public interface IINMessagesDomainHandling : IDisposable, Intents.IINSearchForMessagesIntentHandling, Intents.IINSendMessageIntentHandling, Intents.IINSetMessageAttributeIntentHandling
type IINMessagesDomainHandling = interface
    interface INativeObject
    interface IDisposable
    interface IINSearchForMessagesIntentHandling
    interface IINSendMessageIntentHandling
    interface IINSetMessageAttributeIntentHandling
Attributes
Implements

Properties

Handle

Handle (pointer) to the unmanaged object representation.

(Inherited from INativeObject)

Methods

HandleSearchForMessages(INSearchForMessagesIntent, Action<INSearchForMessagesIntentResponse>)

Developers must override this method and invoke the T:System.Action`1 with an INSearchForMessagesIntentResponse appropriate to the INSearchForMessagesIntent intent.

(Inherited from IINSearchForMessagesIntentHandling)
HandleSendMessage(INSendMessageIntent, Action<INSendMessageIntentResponse>)

Developers must override this method and invoke the T:System.Action`1 with an INSendMessageIntentResponse appropriate to the INSendMessageIntent intent.

(Inherited from IINSendMessageIntentHandling)
HandleSetMessageAttribute(INSetMessageAttributeIntent, Action<INSetMessageAttributeIntentResponse>)

Developers must override this method and invoke the T:System.Action`1 with an INSetMessageAttributeIntentResponse appropriate to the INSetMessageAttributeIntent intent.

(Inherited from IINSetMessageAttributeIntentHandling)

Extension Methods

ConfirmSearchForMessages(IINSearchForMessagesIntentHandling, INSearchForMessagesIntent, Action<INSearchForMessagesIntentResponse>)

Developers may override this method to customize the confirmation of a message search.

ResolveAttributes(IINSearchForMessagesIntentHandling, INSearchForMessagesIntent, Action<INMessageAttributeOptionsResolutionResult>)

Developers may override this method to customize the resolution of attributes in the search.

ResolveDateTimeRange(IINSearchForMessagesIntentHandling, INSearchForMessagesIntent, Action<INDateComponentsRangeResolutionResult>)

Developers may override this method to customize the date range used in the search.

ResolveGroupNames(IINSearchForMessagesIntentHandling, INSearchForMessagesIntent, Action<INStringResolutionResult[]>)

Developers should not use this deprecated method. Developers should use 'ResolveSpeakableGroupNames' instead.

ResolveRecipients(IINSearchForMessagesIntentHandling, INSearchForMessagesIntent, Action<INPersonResolutionResult[]>)

Developers may override this method to customize the resolution of recipients in the message search.

ResolveSenders(IINSearchForMessagesIntentHandling, INSearchForMessagesIntent, Action<INPersonResolutionResult[]>)

Developers may override this method to customize the resolution of senders in the message search.

ResolveSpeakableGroupNames(IINSearchForMessagesIntentHandling, INSearchForMessagesIntent, Action<INSpeakableStringResolutionResult[]>)

Developers may override this method to customize the resolution of speakable names for the groups that were named as recipients.

ConfirmSendMessage(IINSendMessageIntentHandling, INSendMessageIntent, Action<INSendMessageIntentResponse>)

Developers may override this method to customize the confirmation to send a message.

ResolveContent(IINSendMessageIntentHandling, INSendMessageIntent, Action<INStringResolutionResult>)

Developers may override this method to customize the resolution of the content of a message.

ResolveGroupName(IINSendMessageIntentHandling, INSendMessageIntent, Action<INStringResolutionResult>)

Developers should not use this deprecated method. Developers should use 'ResolveSpeakableGroupName' instead.

ResolveRecipients(IINSendMessageIntentHandling, INSendMessageIntent, Action<INPersonResolutionResult[]>)

Developers may implement this method to customize the resolution of message recipients.

ResolveRecipients(IINSendMessageIntentHandling, INSendMessageIntent, Action<INSendMessageRecipientResolutionResult[]>)

Developers may implement this method to customize the resolution of message recipients.

ResolveSpeakableGroupName(IINSendMessageIntentHandling, INSendMessageIntent, Action<INSpeakableStringResolutionResult>)

Developers may implement this method to customize the resolution of the speakable group name.

ConfirmSetMessageAttribute(IINSetMessageAttributeIntentHandling, INSetMessageAttributeIntent, Action<INSetMessageAttributeIntentResponse>)

Developers may override this method to customize the confirmation of the setting of a message attribute.

ResolveAttribute(IINSetMessageAttributeIntentHandling, INSetMessageAttributeIntent, Action<INMessageAttributeResolutionResult>)

Developers may override this method to customize the resolution of a message attribute.

Applies to