Compartilhar via


INExtension.GetHandler(INIntent) Método

Definição

Os desenvolvedores substituem esse método para retornar o objeto do manipulador se intent for um dos quais sua extensão pode responder.

[Foundation.Export("handlerForIntent:")]
[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 virtual Foundation.NSObject GetHandler (Intents.INIntent intent);
abstract member GetHandler : Intents.INIntent -> Foundation.NSObject
override this.GetHandler : Intents.INIntent -> Foundation.NSObject

Parâmetros

intent
INIntent

O INIntent recebido pelo sistema.

Retornos

O objeto do manipulador do desenvolvedor ou null se intent não for tratado pela extensão.

Implementações

Atributos

Comentários

O objeto manipulador do desenvolvedor deve implementar a IIN{Intent}Handling interface apropriada para os tipos dos INIntent quais esse método retorna o manipulador. Por exemplo:

class MyExtension : INExtension
{
    override public NSObject GetHandler (INIntent intent)
    {
        if (intent is INSendMessageIntent)
        {
            return new MySendMessageHandler ();
        }
        return null;
    }
}

class MySendMessageHandler : NSObject, IINSendMessageIntentHandling
{
    public void HandleSendMessage (INSendMessageIntent intent, Action<INSendMessageIntentResponse> completion)
    {
        // ... Send a message here ...

        var activity = new NSUserActivity (nameof (INSendMessageIntent));
        var response = new INSendMessageIntentResponse (INSendMessageIntentResponseCode.Success, activity);
        completion (response);
    }
}

Aplica-se a