你当前正在访问 Microsoft Azure Global Edition 技术文档网站。 如果需要访问由世纪互联运营的 Microsoft Azure 中国技术文档网站,请访问 https://docs.azure.cn

NotificationHubClient.SendAppleNativeNotificationAsync 方法

定义

重载

SendAppleNativeNotificationAsync(String)

发送 Apple 本机通知。 若要指定到期时间,请使用 SendNotificationAsync(Notification) 方法。

SendAppleNativeNotificationAsync(String, IEnumerable<String>)

将 Apple 本机通知异步发送到一组非空标记, (最多 20) 。 这等效于带有布尔 OR (“|”的标记表达式) 。 若要指定到期时间,请使用 SendNotificationAsync(Notification) 方法。

SendAppleNativeNotificationAsync(String, String)

将 Apple 本机通知异步发送到标记表达式, (单个标记“tag”是有效的标记表达式) 。 若要指定到期时间,请使用 SendNotificationAsync(Notification) 方法。

SendAppleNativeNotificationAsync(String, CancellationToken)

发送 Apple 本机通知。 若要指定到期时间,请使用 SendNotificationAsync(Notification) 方法。

SendAppleNativeNotificationAsync(String, IEnumerable<String>, CancellationToken)

将 Apple 本机通知异步发送到一组非空标记, (最多 20) 。 这等效于带有布尔 OR (“|”的标记表达式) 。 若要指定到期时间,请使用 SendNotificationAsync(Notification) 方法。

SendAppleNativeNotificationAsync(String, String, CancellationToken)

将 Apple 本机通知异步发送到标记表达式, (单个标记“tag”是有效的标记表达式) 。 若要指定到期时间,请使用 SendNotificationAsync(Notification) 方法。

SendAppleNativeNotificationAsync(String)

发送 Apple 本机通知。 若要指定到期时间,请使用 SendNotificationAsync(Notification) 方法。

public System.Threading.Tasks.Task<Microsoft.Azure.NotificationHubs.NotificationOutcome> SendAppleNativeNotificationAsync (string jsonPayload);
abstract member SendAppleNativeNotificationAsync : string -> System.Threading.Tasks.Task<Microsoft.Azure.NotificationHubs.NotificationOutcome>
override this.SendAppleNativeNotificationAsync : string -> System.Threading.Tasks.Task<Microsoft.Azure.NotificationHubs.NotificationOutcome>
Public Function SendAppleNativeNotificationAsync (jsonPayload As String) As Task(Of NotificationOutcome)

参数

jsonPayload
String

这是有效的 Apple 推送通知服务 (APNS) 有效负载。 可 在此处找到有关 APNS 有效负载的文档。

返回

NotificationOutcome 描述发送操作的结果。

实现

适用于

SendAppleNativeNotificationAsync(String, IEnumerable<String>)

将 Apple 本机通知异步发送到一组非空标记, (最多 20) 。 这等效于带有布尔 OR (“|”的标记表达式) 。 若要指定到期时间,请使用 SendNotificationAsync(Notification) 方法。

public System.Threading.Tasks.Task<Microsoft.Azure.NotificationHubs.NotificationOutcome> SendAppleNativeNotificationAsync (string jsonPayload, System.Collections.Generic.IEnumerable<string> tags);
abstract member SendAppleNativeNotificationAsync : string * seq<string> -> System.Threading.Tasks.Task<Microsoft.Azure.NotificationHubs.NotificationOutcome>
override this.SendAppleNativeNotificationAsync : string * seq<string> -> System.Threading.Tasks.Task<Microsoft.Azure.NotificationHubs.NotificationOutcome>
Public Function SendAppleNativeNotificationAsync (jsonPayload As String, tags As IEnumerable(Of String)) As Task(Of NotificationOutcome)

参数

jsonPayload
String

这是有效的 Apple 推送通知服务 (APNS) 有效负载。 可 在此处找到有关 APNS 有效负载的文档。

tags
IEnumerable<String>

一组非空标记 () 最多 20 个标记。 集中的每个字符串可以包含单个标记。

返回

NotificationOutcome 描述发送操作的结果。

实现

适用于

SendAppleNativeNotificationAsync(String, String)

将 Apple 本机通知异步发送到标记表达式, (单个标记“tag”是有效的标记表达式) 。 若要指定到期时间,请使用 SendNotificationAsync(Notification) 方法。

public System.Threading.Tasks.Task<Microsoft.Azure.NotificationHubs.NotificationOutcome> SendAppleNativeNotificationAsync (string jsonPayload, string tagExpression);
abstract member SendAppleNativeNotificationAsync : string * string -> System.Threading.Tasks.Task<Microsoft.Azure.NotificationHubs.NotificationOutcome>
override this.SendAppleNativeNotificationAsync : string * string -> System.Threading.Tasks.Task<Microsoft.Azure.NotificationHubs.NotificationOutcome>
Public Function SendAppleNativeNotificationAsync (jsonPayload As String, tagExpression As String) As Task(Of NotificationOutcome)

参数

jsonPayload
String

这是有效的 Apple 推送通知服务 (APNS) 有效负载。 可 在此处找到有关 APNS 有效负载的文档。

tagExpression
String

标记表达式是使用逻辑运算符 AND () 、OR (&& ||) 、NOT (!) 和圆括号构造的任何布尔表达式。 例如: (A ||B) && !C. 如果表达式仅使用 PR,则最多可以包含 20 个标记。 其他表达式限制为 6 个标记。 请注意,单个标记“A”是有效的表达式。

返回

NotificationOutcome 描述发送操作的结果。

实现

适用于

SendAppleNativeNotificationAsync(String, CancellationToken)

发送 Apple 本机通知。 若要指定到期时间,请使用 SendNotificationAsync(Notification) 方法。

public System.Threading.Tasks.Task<Microsoft.Azure.NotificationHubs.NotificationOutcome> SendAppleNativeNotificationAsync (string jsonPayload, System.Threading.CancellationToken cancellationToken);
abstract member SendAppleNativeNotificationAsync : string * System.Threading.CancellationToken -> System.Threading.Tasks.Task<Microsoft.Azure.NotificationHubs.NotificationOutcome>
override this.SendAppleNativeNotificationAsync : string * System.Threading.CancellationToken -> System.Threading.Tasks.Task<Microsoft.Azure.NotificationHubs.NotificationOutcome>
Public Function SendAppleNativeNotificationAsync (jsonPayload As String, cancellationToken As CancellationToken) As Task(Of NotificationOutcome)

参数

jsonPayload
String

这是有效的 Apple 推送通知服务 (APNS) 有效负载。 可 在此处找到有关 APNS 有效负载的文档。

cancellationToken
CancellationToken

等待任务完成期间要观察的 CancellationToken

返回

NotificationOutcome 描述发送操作的结果。

实现

适用于

SendAppleNativeNotificationAsync(String, IEnumerable<String>, CancellationToken)

将 Apple 本机通知异步发送到一组非空标记, (最多 20) 。 这等效于带有布尔 OR (“|”的标记表达式) 。 若要指定到期时间,请使用 SendNotificationAsync(Notification) 方法。

public System.Threading.Tasks.Task<Microsoft.Azure.NotificationHubs.NotificationOutcome> SendAppleNativeNotificationAsync (string jsonPayload, System.Collections.Generic.IEnumerable<string> tags, System.Threading.CancellationToken cancellationToken);
abstract member SendAppleNativeNotificationAsync : string * seq<string> * System.Threading.CancellationToken -> System.Threading.Tasks.Task<Microsoft.Azure.NotificationHubs.NotificationOutcome>
override this.SendAppleNativeNotificationAsync : string * seq<string> * System.Threading.CancellationToken -> System.Threading.Tasks.Task<Microsoft.Azure.NotificationHubs.NotificationOutcome>
Public Function SendAppleNativeNotificationAsync (jsonPayload As String, tags As IEnumerable(Of String), cancellationToken As CancellationToken) As Task(Of NotificationOutcome)

参数

jsonPayload
String

这是有效的 Apple 推送通知服务 (APNS) 有效负载。 可 在此处找到有关 APNS 有效负载的文档。

tags
IEnumerable<String>

一组非空标记 () 最多 20 个标记。 集中的每个字符串可以包含单个标记。

cancellationToken
CancellationToken

等待任务完成期间要观察的 CancellationToken

返回

NotificationOutcome 描述发送操作的结果。

实现

适用于

SendAppleNativeNotificationAsync(String, String, CancellationToken)

将 Apple 本机通知异步发送到标记表达式, (单个标记“tag”是有效的标记表达式) 。 若要指定到期时间,请使用 SendNotificationAsync(Notification) 方法。

public System.Threading.Tasks.Task<Microsoft.Azure.NotificationHubs.NotificationOutcome> SendAppleNativeNotificationAsync (string jsonPayload, string tagExpression, System.Threading.CancellationToken cancellationToken);
abstract member SendAppleNativeNotificationAsync : string * string * System.Threading.CancellationToken -> System.Threading.Tasks.Task<Microsoft.Azure.NotificationHubs.NotificationOutcome>
override this.SendAppleNativeNotificationAsync : string * string * System.Threading.CancellationToken -> System.Threading.Tasks.Task<Microsoft.Azure.NotificationHubs.NotificationOutcome>
Public Function SendAppleNativeNotificationAsync (jsonPayload As String, tagExpression As String, cancellationToken As CancellationToken) As Task(Of NotificationOutcome)

参数

jsonPayload
String

这是有效的 Apple 推送通知服务 (APNS) 有效负载。 可 在此处找到有关 APNS 有效负载的文档。

tagExpression
String

标记表达式是使用逻辑运算符 AND () 、OR (&& ||) 、NOT (!) 和圆括号构造的任何布尔表达式。 例如: (A ||B) && !C. 如果表达式仅使用 PR,则最多可以包含 20 个标记。 其他表达式限制为 6 个标记。 请注意,单个标记“A”是有效的表达式。

cancellationToken
CancellationToken

等待任务完成期间要观察的 CancellationToken

返回

NotificationOutcome 描述发送操作的结果。

实现

适用于