IINCallsDomainHandling 接口

定义

接口,合并与各种电话呼叫意向相关的多个接口。

[Foundation.Protocol(Name="INCallsDomainHandling", WrapperType=typeof(Intents.INCallsDomainHandlingWrapper))]
[ObjCRuntime.Introduced(ObjCRuntime.PlatformName.MacOSX, 10, 12, 0, ObjCRuntime.PlatformArchitecture.Arch64, null)]
[ObjCRuntime.Introduced(ObjCRuntime.PlatformName.iOS, 10, 0, ObjCRuntime.PlatformArchitecture.All, null)]
[ObjCRuntime.Introduced(ObjCRuntime.PlatformName.WatchOS, 3, 2, ObjCRuntime.PlatformArchitecture.All, null)]
public interface IINCallsDomainHandling : IDisposable, Intents.IINSearchCallHistoryIntentHandling, Intents.IINStartAudioCallIntentHandling, Intents.IINStartVideoCallIntentHandling
type IINCallsDomainHandling = interface
    interface INativeObject
    interface IDisposable
    interface IINSearchCallHistoryIntentHandling
    interface IINStartAudioCallIntentHandling
    interface IINStartVideoCallIntentHandling
属性
实现

属性

Handle

处理指向非托管对象表示形式的 (指针) 。

(继承自 INativeObject)

方法

HandleSearchCallHistory(INSearchCallHistoryIntent, Action<INSearchCallHistoryIntentResponse>)

开发人员必须重写此方法,并使用 适用于 INSearchCallHistoryIntentintent的 调用 T:System.Action'1INSearchCallHistoryIntentResponse

(继承自 IINSearchCallHistoryIntentHandling)
HandleStartAudioCall(INStartAudioCallIntent, Action<INStartAudioCallIntentResponse>)

开发人员必须重写此方法,并使用 适用于 INStartAudioCallIntentintent的 调用 T:System.Action'1INStartAudioCallIntentResponse

(继承自 IINStartAudioCallIntentHandling)
HandleStartVideoCall(INStartVideoCallIntent, Action<INStartVideoCallIntentResponse>)

开发人员必须重写此方法,并使用 适用于 INStartVideoCallIntentintent的 调用 T:System.Action'1INStartVideoCallIntentResponse

(继承自 IINStartVideoCallIntentHandling)

扩展方法

ConfirmSearchCallHistory(IINSearchCallHistoryIntentHandling, INSearchCallHistoryIntent, Action<INSearchCallHistoryIntentResponse>)

开发人员可以重写此方法以自定义呼叫历史记录搜索的确认。

ResolveCallType(IINSearchCallHistoryIntentHandling, INSearchCallHistoryIntent, Action<INCallRecordTypeResolutionResult>)

开发人员不应使用此已弃用的方法。 开发人员应改用“ResolveCallTypes”。

ResolveCallTypes(IINSearchCallHistoryIntentHandling, INSearchCallHistoryIntent, Action<INCallRecordTypeOptionsResolutionResult>)

开发人员可以实现此方法来解析历史记录搜索的调用类型。

ResolveDateCreated(IINSearchCallHistoryIntentHandling, INSearchCallHistoryIntent, Action<INDateComponentsRangeResolutionResult>)

开发人员可以重写此方法以自定义搜索的“创建日期”参数。

ResolveRecipient(IINSearchCallHistoryIntentHandling, INSearchCallHistoryIntent, Action<INPersonResolutionResult>)

开发人员可以重写此方法以自定义搜索的 recipient 参数。

ResolveUnseen(IINSearchCallHistoryIntentHandling, INSearchCallHistoryIntent, Action<INBooleanResolutionResult>)

开发人员可以实现此方法来自定义用户或应用是否可以搜索看不见的调用的解析。

ConfirmStartAudioCall(IINStartAudioCallIntentHandling, INStartAudioCallIntent, Action<INStartAudioCallIntentResponse>)

开发人员可以重写此方法以自定义音频呼叫应启动的确认。

ResolveContacts(IINStartAudioCallIntentHandling, INStartAudioCallIntent, Action<INPersonResolutionResult[]>)

开发人员可以重写此方法,以基于 intent解析特定联系人。

ResolveDestinationType(IINStartAudioCallIntentHandling, INStartAudioCallIntent, Action<INCallDestinationTypeResolutionResult>)

开发人员可以实现此方法来自定义目标类型的解析。

ConfirmStartVideoCall(IINStartVideoCallIntentHandling, INStartVideoCallIntent, Action<INStartVideoCallIntentResponse>)

开发人员可以实现此方法,以在确认期间自定义行为以启动视频呼叫。

ResolveContacts(IINStartVideoCallIntentHandling, INStartVideoCallIntent, Action<INPersonResolutionResult[]>)

开发人员可以实现此方法来自定义联系人的解决方法。

适用于