NotificationHubClient.SendTemplateNotificationAsync メソッド

定義

オーバーロード

SendTemplateNotificationAsync(IDictionary<String,String>)

テンプレート通知を送信します。

SendTemplateNotificationAsync(IDictionary<String,String>, IEnumerable<String>)

テンプレート通知を空でないタグのセット (最大 20) に送信します。 これは、ブール型の OR ("||") を持つタグ式と同じです。

SendTemplateNotificationAsync(IDictionary<String,String>, String)

テンプレート通知をタグ式に送信します (1 つのタグ "tag" は有効なタグ式です)。

SendTemplateNotificationAsync(IDictionary<String,String>, CancellationToken)

テンプレート通知を送信します。

SendTemplateNotificationAsync(IDictionary<String,String>, IEnumerable<String>, CancellationToken)

テンプレート通知を空でないタグのセット (最大 20) に送信します。 これは、ブール型の OR ("||") を持つタグ式と同じです。

SendTemplateNotificationAsync(IDictionary<String,String>, String, CancellationToken)

テンプレート通知をタグ式に送信します (1 つのタグ "tag" は有効なタグ式です)。

SendTemplateNotificationAsync(IDictionary<String,String>)

テンプレート通知を送信します。

public System.Threading.Tasks.Task<Microsoft.Azure.NotificationHubs.NotificationOutcome> SendTemplateNotificationAsync (System.Collections.Generic.IDictionary<string,string> properties);
abstract member SendTemplateNotificationAsync : System.Collections.Generic.IDictionary<string, string> -> System.Threading.Tasks.Task<Microsoft.Azure.NotificationHubs.NotificationOutcome>
override this.SendTemplateNotificationAsync : System.Collections.Generic.IDictionary<string, string> -> System.Threading.Tasks.Task<Microsoft.Azure.NotificationHubs.NotificationOutcome>
Public Function SendTemplateNotificationAsync (properties As IDictionary(Of String, String)) As Task(Of NotificationOutcome)

パラメーター

properties
IDictionary<String,String>

テンプレートに適用するプロパティ。

戻り値

NotificationOutcome 送信操作の結果を記述します。

実装

適用対象

SendTemplateNotificationAsync(IDictionary<String,String>, IEnumerable<String>)

テンプレート通知を空でないタグのセット (最大 20) に送信します。 これは、ブール型の OR ("||") を持つタグ式と同じです。

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

パラメーター

properties
IDictionary<String,String>

テンプレートに適用するプロパティ。

tags
IEnumerable<String>

空でないタグのセット (最大 20 個のタグ)。 セット内の各文字列には、1 つのタグを含めることができます。

戻り値

NotificationOutcome 送信操作の結果を記述します。

実装

適用対象

SendTemplateNotificationAsync(IDictionary<String,String>, String)

テンプレート通知をタグ式に送信します (1 つのタグ "tag" は有効なタグ式です)。

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

パラメーター

properties
IDictionary<String,String>

テンプレートに適用するプロパティ。

tagExpression
String

タグ式は、論理演算子 AND ()、OR (&&||)、NOT (!)、丸かっこを使用して構築されたブール式です。 例: (A ||B) && !C. 式で使用される OR の場合、最大 20 個のタグを含めることができます。 その他の式は 6 つのタグに制限されています。 1 つのタグ "A" は有効な式であることに注意してください。

戻り値

NotificationOutcome 送信操作の結果を記述します。

実装

適用対象

SendTemplateNotificationAsync(IDictionary<String,String>, CancellationToken)

テンプレート通知を送信します。

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

パラメーター

properties
IDictionary<String,String>

テンプレートに適用するプロパティ。

cancellationToken
CancellationToken

タスクの完了を待機しているときに監視する CancellationToken

戻り値

NotificationOutcome 送信操作の結果を記述します。

実装

適用対象

SendTemplateNotificationAsync(IDictionary<String,String>, IEnumerable<String>, CancellationToken)

テンプレート通知を空でないタグのセット (最大 20) に送信します。 これは、ブール型の OR ("||") を持つタグ式と同じです。

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

パラメーター

properties
IDictionary<String,String>

テンプレートに適用するプロパティ。

tags
IEnumerable<String>

空でないタグのセット (最大 20 個のタグ)。 セット内の各文字列には、1 つのタグを含めることができます。

cancellationToken
CancellationToken

タスクの完了を待機しているときに監視する CancellationToken

戻り値

NotificationOutcome 送信操作の結果を記述します。

実装

適用対象

SendTemplateNotificationAsync(IDictionary<String,String>, String, CancellationToken)

テンプレート通知をタグ式に送信します (1 つのタグ "tag" は有効なタグ式です)。

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

パラメーター

properties
IDictionary<String,String>

テンプレートに適用するプロパティ。

tagExpression
String

タグ式は、論理演算子 AND ()、OR (&&||)、NOT (!)、丸かっこを使用して構築されたブール式です。 例: (A ||B) && !C. 式で使用される OR の場合、最大 20 個のタグを含めることができます。 その他の式は 6 つのタグに制限されています。 1 つのタグ "A" は有効な式であることに注意してください。

cancellationToken
CancellationToken

タスクの完了を待機しているときに監視する CancellationToken

戻り値

NotificationOutcome 送信操作の結果を記述します。

実装

適用対象