你当前正在访问 Microsoft Azure Global Edition 技术文档网站。 如果需要访问由世纪互联运营的 Microsoft Azure 中国技术文档网站,请访问 https://docs.azure.cn。
NotificationHubClient.SendNotificationAsync 方法
定义
重要
一些信息与预发行产品相关,相应产品在发行之前可能会进行重大修改。 对于此处提供的信息,Microsoft 不作任何明示或暗示的担保。
重载
SendNotificationAsync(Notification, String, CancellationToken) |
向标记表达式发送通知, (单个标记“tag”是有效的标记表达式) 。 |
SendNotificationAsync(Notification, IEnumerable<String>, CancellationToken) |
将通知异步发送到一组非空标记, (最多 20) 。 这等效于具有布尔 OR (“||”的标记表达式) 。 |
SendNotificationAsync(Notification, CancellationToken) |
将通知发送到一组非空标记, (最多 20) 。 这等效于具有布尔 OR (“||”的标记表达式) 。 |
SendNotificationAsync(Notification) |
将通知发送到一组非空标记, (最多 20) 。 这等效于具有布尔 OR (“||”的标记表达式) 。 |
SendNotificationAsync(Notification, IEnumerable<String>) |
将通知异步发送到一组非空标记, (最多 20) 。 这等效于具有布尔 OR (“||”的标记表达式) 。 |
SendNotificationAsync(Notification, String) |
向标记表达式发送通知, (单个标记“tag”是有效的标记表达式) 。 |
SendNotificationAsync(Notification, String, CancellationToken)
向标记表达式发送通知, (单个标记“tag”是有效的标记表达式) 。
public System.Threading.Tasks.Task<Microsoft.Azure.NotificationHubs.NotificationOutcome> SendNotificationAsync (Microsoft.Azure.NotificationHubs.Notification notification, string tagExpression, System.Threading.CancellationToken cancellationToken);
abstract member SendNotificationAsync : Microsoft.Azure.NotificationHubs.Notification * string * System.Threading.CancellationToken -> System.Threading.Tasks.Task<Microsoft.Azure.NotificationHubs.NotificationOutcome>
override this.SendNotificationAsync : Microsoft.Azure.NotificationHubs.Notification * string * System.Threading.CancellationToken -> System.Threading.Tasks.Task<Microsoft.Azure.NotificationHubs.NotificationOutcome>
Public Function SendNotificationAsync (notification As Notification, tagExpression As String, cancellationToken As CancellationToken) As Task(Of NotificationOutcome)
参数
- notification
- Notification
要发送的通知。
- tagExpression
- String
标记表达式是使用逻辑运算符 AND () 、OR (&& ||) 、NOT (!) 和圆括号构造的任何布尔表达式。 例如: (A ||B) && !C. 如果表达式仅使用 PR,则最多可以包含 20 个标记。 其他表达式限制为 6 个标记。 请注意,单个标记“A”是有效的表达式。
- cancellationToken
- CancellationToken
等待任务完成期间要观察的 CancellationToken。
返回
NotificationOutcome 描述发送操作的结果。
实现
例外
通知。标记属性应为 null
适用于
SendNotificationAsync(Notification, IEnumerable<String>, CancellationToken)
将通知异步发送到一组非空标记, (最多 20) 。 这等效于具有布尔 OR (“||”的标记表达式) 。
public System.Threading.Tasks.Task<Microsoft.Azure.NotificationHubs.NotificationOutcome> SendNotificationAsync (Microsoft.Azure.NotificationHubs.Notification notification, System.Collections.Generic.IEnumerable<string> tags, System.Threading.CancellationToken cancellationToken);
abstract member SendNotificationAsync : Microsoft.Azure.NotificationHubs.Notification * seq<string> * System.Threading.CancellationToken -> System.Threading.Tasks.Task<Microsoft.Azure.NotificationHubs.NotificationOutcome>
override this.SendNotificationAsync : Microsoft.Azure.NotificationHubs.Notification * seq<string> * System.Threading.CancellationToken -> System.Threading.Tasks.Task<Microsoft.Azure.NotificationHubs.NotificationOutcome>
Public Function SendNotificationAsync (notification As Notification, tags As IEnumerable(Of String), cancellationToken As CancellationToken) As Task(Of NotificationOutcome)
参数
- notification
- Notification
要发送的通知。
- tags
- IEnumerable<String>
) 最多 (20 个标记的非空标记集。 集中的每个字符串可以包含单个标记。
- cancellationToken
- CancellationToken
等待任务完成期间要观察的 CancellationToken。
返回
NotificationOutcome 描述发送操作的结果。
实现
例外
当通知或标记对象为 null 时引发
通知。标记属性不应为 null,或者 tags 参数应至少包含一个标记
适用于
SendNotificationAsync(Notification, CancellationToken)
将通知发送到一组非空标记, (最多 20) 。 这等效于具有布尔 OR (“||”的标记表达式) 。
public System.Threading.Tasks.Task<Microsoft.Azure.NotificationHubs.NotificationOutcome> SendNotificationAsync (Microsoft.Azure.NotificationHubs.Notification notification, System.Threading.CancellationToken cancellationToken);
abstract member SendNotificationAsync : Microsoft.Azure.NotificationHubs.Notification * System.Threading.CancellationToken -> System.Threading.Tasks.Task<Microsoft.Azure.NotificationHubs.NotificationOutcome>
override this.SendNotificationAsync : Microsoft.Azure.NotificationHubs.Notification * System.Threading.CancellationToken -> System.Threading.Tasks.Task<Microsoft.Azure.NotificationHubs.NotificationOutcome>
Public Function SendNotificationAsync (notification As Notification, cancellationToken As CancellationToken) As Task(Of NotificationOutcome)
参数
- notification
- Notification
要发送的通知。
- cancellationToken
- CancellationToken
等待任务完成期间要观察的 CancellationToken。
返回
NotificationOutcome 描述发送操作的结果。
实现
例外
适用于
SendNotificationAsync(Notification)
将通知发送到一组非空标记, (最多 20) 。 这等效于具有布尔 OR (“||”的标记表达式) 。
public System.Threading.Tasks.Task<Microsoft.Azure.NotificationHubs.NotificationOutcome> SendNotificationAsync (Microsoft.Azure.NotificationHubs.Notification notification);
abstract member SendNotificationAsync : Microsoft.Azure.NotificationHubs.Notification -> System.Threading.Tasks.Task<Microsoft.Azure.NotificationHubs.NotificationOutcome>
override this.SendNotificationAsync : Microsoft.Azure.NotificationHubs.Notification -> System.Threading.Tasks.Task<Microsoft.Azure.NotificationHubs.NotificationOutcome>
Public Function SendNotificationAsync (notification As Notification) As Task(Of NotificationOutcome)
参数
- notification
- Notification
要发送的通知。
返回
NotificationOutcome 描述发送操作的结果。
实现
例外
适用于
SendNotificationAsync(Notification, IEnumerable<String>)
将通知异步发送到一组非空标记, (最多 20) 。 这等效于具有布尔 OR (“||”的标记表达式) 。
public System.Threading.Tasks.Task<Microsoft.Azure.NotificationHubs.NotificationOutcome> SendNotificationAsync (Microsoft.Azure.NotificationHubs.Notification notification, System.Collections.Generic.IEnumerable<string> tags);
abstract member SendNotificationAsync : Microsoft.Azure.NotificationHubs.Notification * seq<string> -> System.Threading.Tasks.Task<Microsoft.Azure.NotificationHubs.NotificationOutcome>
override this.SendNotificationAsync : Microsoft.Azure.NotificationHubs.Notification * seq<string> -> System.Threading.Tasks.Task<Microsoft.Azure.NotificationHubs.NotificationOutcome>
Public Function SendNotificationAsync (notification As Notification, tags As IEnumerable(Of String)) As Task(Of NotificationOutcome)
参数
- notification
- Notification
要发送的通知。
- tags
- IEnumerable<String>
) 最多 (20 个标记的非空标记集。 集中的每个字符串可以包含单个标记。
返回
NotificationOutcome 描述发送操作的结果。
实现
例外
当通知或标记对象为 null 时引发
通知。标记属性不应为 null,或者 tags 参数应至少包含一个标记
适用于
SendNotificationAsync(Notification, String)
向标记表达式发送通知, (单个标记“tag”是有效的标记表达式) 。
public System.Threading.Tasks.Task<Microsoft.Azure.NotificationHubs.NotificationOutcome> SendNotificationAsync (Microsoft.Azure.NotificationHubs.Notification notification, string tagExpression);
abstract member SendNotificationAsync : Microsoft.Azure.NotificationHubs.Notification * string -> System.Threading.Tasks.Task<Microsoft.Azure.NotificationHubs.NotificationOutcome>
override this.SendNotificationAsync : Microsoft.Azure.NotificationHubs.Notification * string -> System.Threading.Tasks.Task<Microsoft.Azure.NotificationHubs.NotificationOutcome>
Public Function SendNotificationAsync (notification As Notification, tagExpression As String) As Task(Of NotificationOutcome)
参数
- notification
- Notification
要发送的通知。
- tagExpression
- String
标记表达式是使用逻辑运算符 AND () 、OR (&& ||) 、NOT (!) 和圆括号构造的任何布尔表达式。 例如: (A ||B) && !C. 如果表达式仅使用 PR,则最多可以包含 20 个标记。 其他表达式限制为 6 个标记。 请注意,单个标记“A”是有效的表达式。
返回
NotificationOutcome 描述发送操作的结果。
实现
例外
通知。标记属性应为 null