NotificationManager.NotificationDelegate Propriedade
Definição
Importante
Algumas informações se referem a produtos de pré-lançamento que podem ser substancialmente modificados antes do lançamento. A Microsoft não oferece garantias, expressas ou implícitas, das informações aqui fornecidas.
Retorna o #setNotificationDelegate(String) delegate
que pode postar notificações em seu nome, se houver uma. -ou- Permite que um pacote publique notificações em seu nome usando #notifyAsPackage(String, String, int, Notification)
o .
public virtual string? NotificationDelegate { [Android.Runtime.Register("getNotificationDelegate", "()Ljava/lang/String;", "GetGetNotificationDelegateHandler", ApiSince=29)] get; [Android.Runtime.Register("setNotificationDelegate", "(Ljava/lang/String;)V", "GetSetNotificationDelegate_Ljava_lang_String_Handler", ApiSince=29)] set; }
[<get: Android.Runtime.Register("getNotificationDelegate", "()Ljava/lang/String;", "GetGetNotificationDelegateHandler", ApiSince=29)>]
[<set: Android.Runtime.Register("setNotificationDelegate", "(Ljava/lang/String;)V", "GetSetNotificationDelegate_Ljava_lang_String_Handler", ApiSince=29)>]
member this.NotificationDelegate : string with get, set
Valor da propriedade
- Atributos
Comentários
Documentação do proprietário getter:
Retorna o #setNotificationDelegate(String) delegate
que pode postar notificações em seu nome, se houver uma.
Documentação Java para android.app.NotificationManager.getNotificationDelegate()
.
Documentação do setter de propriedades:
Permite que um pacote publique notificações em seu nome usando #notifyAsPackage(String, String, int, Notification)
o .
Isso pode ser usado para permitir que processos persistentes postem notificações com base em mensagens recebidas em seu nome da nuvem, sem que seu processo precise ser ativado.
Você pode verificar se você tem um delegado permitido com #getNotificationDelegate()
e revogar seu delegado passando null para esse método.
Documentação Java para android.app.NotificationManager.setNotificationDelegate(java.lang.String)
.
Partes desta página são modificações baseadas no trabalho criado e compartilhado pelo Android Open Source Project e usado de acordo com os termos descritos na Creative Commons 2.5 Attribution License.