INotificationHubClient.GetRegistrationsByTagAsync メソッド
定義
重要
一部の情報は、リリース前に大きく変更される可能性があるプレリリースされた製品に関するものです。 Microsoft は、ここに記載されている情報について、明示または黙示を問わず、一切保証しません。
オーバーロード
GetRegistrationsByTagAsync(String, Int32) |
タグによって登録を非同期に取得します。 |
GetRegistrationsByTagAsync(String, Int32, CancellationToken) |
タグによって登録を非同期に取得します。 |
GetRegistrationsByTagAsync(String, String, Int32) |
タグによって登録を非同期に取得します。 |
GetRegistrationsByTagAsync(String, String, Int32, CancellationToken) |
タグによって登録を非同期に取得します。 |
GetRegistrationsByTagAsync(String, Int32)
タグによって登録を非同期に取得します。
public System.Threading.Tasks.Task<Microsoft.Azure.NotificationHubs.CollectionQueryResult<Microsoft.Azure.NotificationHubs.RegistrationDescription>> GetRegistrationsByTagAsync (string tag, int top);
abstract member GetRegistrationsByTagAsync : string * int -> System.Threading.Tasks.Task<Microsoft.Azure.NotificationHubs.CollectionQueryResult<Microsoft.Azure.NotificationHubs.RegistrationDescription>>
Public Function GetRegistrationsByTagAsync (tag As String, top As Integer) As Task(Of CollectionQueryResult(Of RegistrationDescription))
パラメーター
- tag
- String
タグ。
- top
- Int32
登録を取得する場所。
戻り値
非同期操作を完了するタスク。クエリで使用できる追加のデータがない場合に null または空の継続トークンが含まれます。
適用対象
GetRegistrationsByTagAsync(String, Int32, CancellationToken)
タグによって登録を非同期に取得します。
public System.Threading.Tasks.Task<Microsoft.Azure.NotificationHubs.CollectionQueryResult<Microsoft.Azure.NotificationHubs.RegistrationDescription>> GetRegistrationsByTagAsync (string tag, int top, System.Threading.CancellationToken cancellationToken);
abstract member GetRegistrationsByTagAsync : string * int * System.Threading.CancellationToken -> System.Threading.Tasks.Task<Microsoft.Azure.NotificationHubs.CollectionQueryResult<Microsoft.Azure.NotificationHubs.RegistrationDescription>>
Public Function GetRegistrationsByTagAsync (tag As String, top As Integer, cancellationToken As CancellationToken) As Task(Of CollectionQueryResult(Of RegistrationDescription))
パラメーター
- tag
- String
タグ。
- top
- Int32
登録を取得する場所。
- cancellationToken
- CancellationToken
タスクの完了を待機しているときに監視する CancellationToken。
戻り値
非同期操作を完了するタスク。クエリで使用できる追加のデータがない場合に null または空の継続トークンが含まれます。
適用対象
GetRegistrationsByTagAsync(String, String, Int32)
タグによって登録を非同期に取得します。
public System.Threading.Tasks.Task<Microsoft.Azure.NotificationHubs.CollectionQueryResult<Microsoft.Azure.NotificationHubs.RegistrationDescription>> GetRegistrationsByTagAsync (string tag, string continuationToken, int top);
abstract member GetRegistrationsByTagAsync : string * string * int -> System.Threading.Tasks.Task<Microsoft.Azure.NotificationHubs.CollectionQueryResult<Microsoft.Azure.NotificationHubs.RegistrationDescription>>
Public Function GetRegistrationsByTagAsync (tag As String, continuationToken As String, top As Integer) As Task(Of CollectionQueryResult(Of RegistrationDescription))
パラメーター
- tag
- String
タグ。
- continuationToken
- String
継続トークンです。
- top
- Int32
登録を取得する場所。
戻り値
非同期操作を完了するタスク。クエリで使用できる追加のデータがない場合に null または空の継続トークンが含まれます。
例外
タグ オブジェクトが null の場合にスローされます
適用対象
GetRegistrationsByTagAsync(String, String, Int32, CancellationToken)
タグによって登録を非同期に取得します。
public System.Threading.Tasks.Task<Microsoft.Azure.NotificationHubs.CollectionQueryResult<Microsoft.Azure.NotificationHubs.RegistrationDescription>> GetRegistrationsByTagAsync (string tag, string continuationToken, int top, System.Threading.CancellationToken cancellationToken);
abstract member GetRegistrationsByTagAsync : string * string * int * System.Threading.CancellationToken -> System.Threading.Tasks.Task<Microsoft.Azure.NotificationHubs.CollectionQueryResult<Microsoft.Azure.NotificationHubs.RegistrationDescription>>
Public Function GetRegistrationsByTagAsync (tag As String, continuationToken As String, top As Integer, cancellationToken As CancellationToken) As Task(Of CollectionQueryResult(Of RegistrationDescription))
パラメーター
- tag
- String
タグ。
- continuationToken
- String
継続トークンです。
- top
- Int32
登録を取得する場所。
- cancellationToken
- CancellationToken
タスクの完了を待機しているときに監視する CancellationToken。
戻り値
非同期操作を完了するタスク。クエリで使用できる追加のデータがない場合に null または空の継続トークンが含まれます。
例外
タグ オブジェクトが null の場合にスローされます
適用対象
Azure SDK for .NET