NotificationHubClient.SendFcmNativeNotificationAsync Método
Definición
Importante
Parte de la información hace referencia a la versión preliminar del producto, que puede haberse modificado sustancialmente antes de lanzar la versión definitiva. Microsoft no otorga ninguna garantía, explícita o implícita, con respecto a la información proporcionada aquí.
Sobrecargas
SendFcmNativeNotificationAsync(String, IEnumerable<String>, CancellationToken) |
Envía una notificación nativa de FCM a un conjunto no vacío de etiquetas (máximo 20). Esto equivale a una expresión de etiqueta con OID booleanas ("||"). |
SendFcmNativeNotificationAsync(String) |
Envía una notificación nativa de Firebase Cloud Messaging (FCM). |
SendFcmNativeNotificationAsync(String, IEnumerable<String>) |
Envía una notificación nativa de FCM a un conjunto no vacío de etiquetas (máximo 20). Esto equivale a una expresión de etiqueta con OID booleanas ("||"). |
SendFcmNativeNotificationAsync(String, String) |
Envía una notificación nativa de FCM a una expresión de etiqueta (una sola etiqueta "etiqueta" es una expresión de etiqueta válida). |
SendFcmNativeNotificationAsync(String, CancellationToken) |
Envía una notificación nativa de Firebase Cloud Messaging (FCM). |
SendFcmNativeNotificationAsync(String, String, CancellationToken) |
Envía una notificación nativa de FCM a una expresión de etiqueta (una sola etiqueta "etiqueta" es una expresión de etiqueta válida). |
SendFcmNativeNotificationAsync(String, IEnumerable<String>, CancellationToken)
Envía una notificación nativa de FCM a un conjunto no vacío de etiquetas (máximo 20). Esto equivale a una expresión de etiqueta con OID booleanas ("||").
public System.Threading.Tasks.Task<Microsoft.Azure.NotificationHubs.NotificationOutcome> SendFcmNativeNotificationAsync (string jsonPayload, System.Collections.Generic.IEnumerable<string> tags, System.Threading.CancellationToken cancellationToken);
abstract member SendFcmNativeNotificationAsync : string * seq<string> * System.Threading.CancellationToken -> System.Threading.Tasks.Task<Microsoft.Azure.NotificationHubs.NotificationOutcome>
override this.SendFcmNativeNotificationAsync : string * seq<string> * System.Threading.CancellationToken -> System.Threading.Tasks.Task<Microsoft.Azure.NotificationHubs.NotificationOutcome>
Public Function SendFcmNativeNotificationAsync (jsonPayload As String, tags As IEnumerable(Of String), cancellationToken As CancellationToken) As Task(Of NotificationOutcome)
Parámetros
- jsonPayload
- String
Carga JSON. Puede encontrar documentación sobre el formato adecuado de un mensaje FCM aquí.
- tags
- IEnumerable<String>
Un conjunto no vacío de etiquetas (máximo 20 etiquetas). Cada cadena del conjunto puede contener una sola etiqueta.
- cancellationToken
- CancellationToken
Un CancellationToken que se observará mientras se espera a que se complete la tarea.
Devoluciones
NotificationOutcome que describe el resultado de la operación De envío.
Implementaciones
Se aplica a
SendFcmNativeNotificationAsync(String)
Envía una notificación nativa de Firebase Cloud Messaging (FCM).
public System.Threading.Tasks.Task<Microsoft.Azure.NotificationHubs.NotificationOutcome> SendFcmNativeNotificationAsync (string jsonPayload);
abstract member SendFcmNativeNotificationAsync : string -> System.Threading.Tasks.Task<Microsoft.Azure.NotificationHubs.NotificationOutcome>
override this.SendFcmNativeNotificationAsync : string -> System.Threading.Tasks.Task<Microsoft.Azure.NotificationHubs.NotificationOutcome>
Public Function SendFcmNativeNotificationAsync (jsonPayload As String) As Task(Of NotificationOutcome)
Parámetros
- jsonPayload
- String
Carga JSON. Puede encontrar documentación sobre el formato adecuado de un mensaje FCM aquí.
Devoluciones
NotificationOutcome que describe el resultado de la operación De envío.
Implementaciones
Se aplica a
SendFcmNativeNotificationAsync(String, IEnumerable<String>)
Envía una notificación nativa de FCM a un conjunto no vacío de etiquetas (máximo 20). Esto equivale a una expresión de etiqueta con OID booleanas ("||").
public System.Threading.Tasks.Task<Microsoft.Azure.NotificationHubs.NotificationOutcome> SendFcmNativeNotificationAsync (string jsonPayload, System.Collections.Generic.IEnumerable<string> tags);
abstract member SendFcmNativeNotificationAsync : string * seq<string> -> System.Threading.Tasks.Task<Microsoft.Azure.NotificationHubs.NotificationOutcome>
override this.SendFcmNativeNotificationAsync : string * seq<string> -> System.Threading.Tasks.Task<Microsoft.Azure.NotificationHubs.NotificationOutcome>
Public Function SendFcmNativeNotificationAsync (jsonPayload As String, tags As IEnumerable(Of String)) As Task(Of NotificationOutcome)
Parámetros
- jsonPayload
- String
Carga JSON. Puede encontrar documentación sobre el formato adecuado de un mensaje FCM aquí.
- tags
- IEnumerable<String>
Un conjunto no vacío de etiquetas (máximo 20 etiquetas). Cada cadena del conjunto puede contener una sola etiqueta.
Devoluciones
NotificationOutcome que describe el resultado de la operación De envío.
Implementaciones
Se aplica a
SendFcmNativeNotificationAsync(String, String)
Envía una notificación nativa de FCM a una expresión de etiqueta (una sola etiqueta "etiqueta" es una expresión de etiqueta válida).
public System.Threading.Tasks.Task<Microsoft.Azure.NotificationHubs.NotificationOutcome> SendFcmNativeNotificationAsync (string jsonPayload, string tagExpression);
abstract member SendFcmNativeNotificationAsync : string * string -> System.Threading.Tasks.Task<Microsoft.Azure.NotificationHubs.NotificationOutcome>
override this.SendFcmNativeNotificationAsync : string * string -> System.Threading.Tasks.Task<Microsoft.Azure.NotificationHubs.NotificationOutcome>
Public Function SendFcmNativeNotificationAsync (jsonPayload As String, tagExpression As String) As Task(Of NotificationOutcome)
Parámetros
- jsonPayload
- String
Carga JSON. Puede encontrar documentación sobre el formato adecuado de un mensaje FCM aquí.
- tagExpression
- String
Una expresión de etiqueta es cualquier expresión booleana construida con los operadores lógicos AND (), OR (&&||), NOT (!) y paréntesis redondos. Por ejemplo: (A || B) && !C. Si una expresión solo usa RS, puede contener como máximo 20 etiquetas. Otras expresiones están limitadas a 6 etiquetas. Tenga en cuenta que una sola etiqueta "A" es una expresión válida.
Devoluciones
NotificationOutcome que describe el resultado de la operación De envío.
Implementaciones
Se aplica a
SendFcmNativeNotificationAsync(String, CancellationToken)
Envía una notificación nativa de Firebase Cloud Messaging (FCM).
public System.Threading.Tasks.Task<Microsoft.Azure.NotificationHubs.NotificationOutcome> SendFcmNativeNotificationAsync (string jsonPayload, System.Threading.CancellationToken cancellationToken);
abstract member SendFcmNativeNotificationAsync : string * System.Threading.CancellationToken -> System.Threading.Tasks.Task<Microsoft.Azure.NotificationHubs.NotificationOutcome>
override this.SendFcmNativeNotificationAsync : string * System.Threading.CancellationToken -> System.Threading.Tasks.Task<Microsoft.Azure.NotificationHubs.NotificationOutcome>
Public Function SendFcmNativeNotificationAsync (jsonPayload As String, cancellationToken As CancellationToken) As Task(Of NotificationOutcome)
Parámetros
- jsonPayload
- String
Carga JSON. Puede encontrar documentación sobre el formato adecuado de un mensaje FCM aquí.
- cancellationToken
- CancellationToken
Un CancellationToken que se observará mientras se espera a que se complete la tarea.
Devoluciones
NotificationOutcome que describe el resultado de la operación De envío.
Implementaciones
Se aplica a
SendFcmNativeNotificationAsync(String, String, CancellationToken)
Envía una notificación nativa de FCM a una expresión de etiqueta (una sola etiqueta "etiqueta" es una expresión de etiqueta válida).
public System.Threading.Tasks.Task<Microsoft.Azure.NotificationHubs.NotificationOutcome> SendFcmNativeNotificationAsync (string jsonPayload, string tagExpression, System.Threading.CancellationToken cancellationToken);
abstract member SendFcmNativeNotificationAsync : string * string * System.Threading.CancellationToken -> System.Threading.Tasks.Task<Microsoft.Azure.NotificationHubs.NotificationOutcome>
override this.SendFcmNativeNotificationAsync : string * string * System.Threading.CancellationToken -> System.Threading.Tasks.Task<Microsoft.Azure.NotificationHubs.NotificationOutcome>
Public Function SendFcmNativeNotificationAsync (jsonPayload As String, tagExpression As String, cancellationToken As CancellationToken) As Task(Of NotificationOutcome)
Parámetros
- jsonPayload
- String
Carga JSON. Puede encontrar documentación sobre el formato adecuado de un mensaje FCM aquí.
- tagExpression
- String
Una expresión de etiqueta es cualquier expresión booleana construida con los operadores lógicos AND (), OR (&&||), NOT (!) y paréntesis redondos. Por ejemplo: (A || B) && !C. Si una expresión solo usa RS, puede contener como máximo 20 etiquetas. Otras expresiones están limitadas a 6 etiquetas. Tenga en cuenta que una sola etiqueta "A" es una expresión válida.
- cancellationToken
- CancellationToken
Un CancellationToken que se observará mientras se espera a que se complete la tarea.
Devoluciones
NotificationOutcome que describe el resultado de la operación De envío.
Implementaciones
Se aplica a
Azure SDK for .NET