NotificationHubClient.SendBaiduNativeNotificationAsync Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Overloads
SendBaiduNativeNotificationAsync(String) |
Sends a Baidu native notification. |
SendBaiduNativeNotificationAsync(String, IEnumerable<String>) |
Sends Baidu native notification to a tag expression (a single tag "tag" is a valid tag expression). |
SendBaiduNativeNotificationAsync(String, String) |
Sends Baidu native notification to a tag expression (a single tag "tag" is a valid tag expression). |
SendBaiduNativeNotificationAsync(String)
Sends a Baidu native notification.
public System.Threading.Tasks.Task<Microsoft.Azure.NotificationHubs.NotificationOutcome> SendBaiduNativeNotificationAsync (string message);
member this.SendBaiduNativeNotificationAsync : string -> System.Threading.Tasks.Task<Microsoft.Azure.NotificationHubs.NotificationOutcome>
Public Function SendBaiduNativeNotificationAsync (message As String) As Task(Of NotificationOutcome)
Parameters
- message
- System.String
This is a json request. Baidu documents the format for the json here.
Returns
- System.Threading.Tasks.Task<NotificationOutcome>
NotificationOutcome which describes the result of the Send operation.
Applies to
SendBaiduNativeNotificationAsync(String, IEnumerable<String>)
Sends Baidu native notification to a tag expression (a single tag "tag" is a valid tag expression).
public System.Threading.Tasks.Task<Microsoft.Azure.NotificationHubs.NotificationOutcome> SendBaiduNativeNotificationAsync (string message, System.Collections.Generic.IEnumerable<string> tags);
member this.SendBaiduNativeNotificationAsync : string * seq<string> -> System.Threading.Tasks.Task<Microsoft.Azure.NotificationHubs.NotificationOutcome>
Public Function SendBaiduNativeNotificationAsync (message As String, tags As IEnumerable(Of String)) As Task(Of NotificationOutcome)
Parameters
- message
- System.String
This is a json request. Baidu documents the format for the json here.
- tags
- System.Collections.Generic.IEnumerable<System.String>
A non-empty set of tags (maximum 20 tags). Each string in the set can contain a single tag.
Returns
- System.Threading.Tasks.Task<NotificationOutcome>
NotificationOutcome which describes the result of the Send operation.
Applies to
SendBaiduNativeNotificationAsync(String, String)
Sends Baidu native notification to a tag expression (a single tag "tag" is a valid tag expression).
public System.Threading.Tasks.Task<Microsoft.Azure.NotificationHubs.NotificationOutcome> SendBaiduNativeNotificationAsync (string message, string tagExpression);
member this.SendBaiduNativeNotificationAsync : string * string -> System.Threading.Tasks.Task<Microsoft.Azure.NotificationHubs.NotificationOutcome>
Public Function SendBaiduNativeNotificationAsync (message As String, tagExpression As String) As Task(Of NotificationOutcome)
Parameters
- message
- System.String
This is a json request. Baidu documents the format for the json here.
- tagExpression
- System.String
A tag expression is any boolean expression constructed using the logical operators AND (&&), OR (||), NOT (!), and round parentheses. For example: (A || B) && !C. If an expression uses only ORs, it can contain at most 20 tags. Other expressions are limited to 6 tags. Note that a single tag "A" is a valid expression.
Returns
- System.Threading.Tasks.Task<NotificationOutcome>
NotificationOutcome which describes the result of the Send operation.