NotificationHubClient.ScheduleNotificationAsync 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
ScheduleNotificationAsync(Notification, DateTimeOffset) |
Schedules the notification asynchronously. |
ScheduleNotificationAsync(Notification, DateTimeOffset, IEnumerable<String>) |
Schedules the notification asynchronously. |
ScheduleNotificationAsync(Notification, DateTimeOffset, String) |
Schedules the notification asynchronously. |
ScheduleNotificationAsync(Notification, DateTimeOffset, CancellationToken) |
Schedules the notification asynchronously. |
ScheduleNotificationAsync(Notification, DateTimeOffset, IEnumerable<String>, CancellationToken) |
Schedules the notification asynchronously. |
ScheduleNotificationAsync(Notification, DateTimeOffset, String, CancellationToken) |
Schedules the notification asynchronously. |
ScheduleNotificationAsync(Notification, DateTimeOffset)
Schedules the notification asynchronously.
public System.Threading.Tasks.Task<Microsoft.Azure.NotificationHubs.ScheduledNotification> ScheduleNotificationAsync (Microsoft.Azure.NotificationHubs.Notification notification, DateTimeOffset scheduledTime);
abstract member ScheduleNotificationAsync : Microsoft.Azure.NotificationHubs.Notification * DateTimeOffset -> System.Threading.Tasks.Task<Microsoft.Azure.NotificationHubs.ScheduledNotification>
override this.ScheduleNotificationAsync : Microsoft.Azure.NotificationHubs.Notification * DateTimeOffset -> System.Threading.Tasks.Task<Microsoft.Azure.NotificationHubs.ScheduledNotification>
Public Function ScheduleNotificationAsync (notification As Notification, scheduledTime As DateTimeOffset) As Task(Of ScheduledNotification)
Parameters
- notification
- Notification
The notification.
- scheduledTime
- DateTimeOffset
The scheduled time.
Returns
A task that represents the asynchronous operation.
Implements
Applies to
ScheduleNotificationAsync(Notification, DateTimeOffset, IEnumerable<String>)
Schedules the notification asynchronously.
public System.Threading.Tasks.Task<Microsoft.Azure.NotificationHubs.ScheduledNotification> ScheduleNotificationAsync (Microsoft.Azure.NotificationHubs.Notification notification, DateTimeOffset scheduledTime, System.Collections.Generic.IEnumerable<string> tags);
abstract member ScheduleNotificationAsync : Microsoft.Azure.NotificationHubs.Notification * DateTimeOffset * seq<string> -> System.Threading.Tasks.Task<Microsoft.Azure.NotificationHubs.ScheduledNotification>
override this.ScheduleNotificationAsync : Microsoft.Azure.NotificationHubs.Notification * DateTimeOffset * seq<string> -> System.Threading.Tasks.Task<Microsoft.Azure.NotificationHubs.ScheduledNotification>
Public Function ScheduleNotificationAsync (notification As Notification, scheduledTime As DateTimeOffset, tags As IEnumerable(Of String)) As Task(Of ScheduledNotification)
Parameters
- notification
- Notification
The notification.
- scheduledTime
- DateTimeOffset
The scheduled time.
- tags
- IEnumerable<String>
The tags.
Returns
A task that represents the asynchronous operation.
Implements
Exceptions
Thrown when tags object is null
tags argument should contain at least one tag
Applies to
ScheduleNotificationAsync(Notification, DateTimeOffset, String)
Schedules the notification asynchronously.
public System.Threading.Tasks.Task<Microsoft.Azure.NotificationHubs.ScheduledNotification> ScheduleNotificationAsync (Microsoft.Azure.NotificationHubs.Notification notification, DateTimeOffset scheduledTime, string tagExpression);
abstract member ScheduleNotificationAsync : Microsoft.Azure.NotificationHubs.Notification * DateTimeOffset * string -> System.Threading.Tasks.Task<Microsoft.Azure.NotificationHubs.ScheduledNotification>
override this.ScheduleNotificationAsync : Microsoft.Azure.NotificationHubs.Notification * DateTimeOffset * string -> System.Threading.Tasks.Task<Microsoft.Azure.NotificationHubs.ScheduledNotification>
Public Function ScheduleNotificationAsync (notification As Notification, scheduledTime As DateTimeOffset, tagExpression As String) As Task(Of ScheduledNotification)
Parameters
- notification
- Notification
The notification.
- scheduledTime
- DateTimeOffset
The scheduled time.
- tagExpression
- String
The tag expression.
Returns
A task that represents the asynchronous operation.
Implements
Applies to
ScheduleNotificationAsync(Notification, DateTimeOffset, CancellationToken)
Schedules the notification asynchronously.
public System.Threading.Tasks.Task<Microsoft.Azure.NotificationHubs.ScheduledNotification> ScheduleNotificationAsync (Microsoft.Azure.NotificationHubs.Notification notification, DateTimeOffset scheduledTime, System.Threading.CancellationToken cancellationToken);
abstract member ScheduleNotificationAsync : Microsoft.Azure.NotificationHubs.Notification * DateTimeOffset * System.Threading.CancellationToken -> System.Threading.Tasks.Task<Microsoft.Azure.NotificationHubs.ScheduledNotification>
override this.ScheduleNotificationAsync : Microsoft.Azure.NotificationHubs.Notification * DateTimeOffset * System.Threading.CancellationToken -> System.Threading.Tasks.Task<Microsoft.Azure.NotificationHubs.ScheduledNotification>
Public Function ScheduleNotificationAsync (notification As Notification, scheduledTime As DateTimeOffset, cancellationToken As CancellationToken) As Task(Of ScheduledNotification)
Parameters
- notification
- Notification
The notification.
- scheduledTime
- DateTimeOffset
The scheduled time.
- cancellationToken
- CancellationToken
A CancellationToken to observe while waiting for a task to complete.
Returns
A task that represents the asynchronous operation.
Implements
Applies to
ScheduleNotificationAsync(Notification, DateTimeOffset, IEnumerable<String>, CancellationToken)
Schedules the notification asynchronously.
public System.Threading.Tasks.Task<Microsoft.Azure.NotificationHubs.ScheduledNotification> ScheduleNotificationAsync (Microsoft.Azure.NotificationHubs.Notification notification, DateTimeOffset scheduledTime, System.Collections.Generic.IEnumerable<string> tags, System.Threading.CancellationToken cancellationToken);
abstract member ScheduleNotificationAsync : Microsoft.Azure.NotificationHubs.Notification * DateTimeOffset * seq<string> * System.Threading.CancellationToken -> System.Threading.Tasks.Task<Microsoft.Azure.NotificationHubs.ScheduledNotification>
override this.ScheduleNotificationAsync : Microsoft.Azure.NotificationHubs.Notification * DateTimeOffset * seq<string> * System.Threading.CancellationToken -> System.Threading.Tasks.Task<Microsoft.Azure.NotificationHubs.ScheduledNotification>
Public Function ScheduleNotificationAsync (notification As Notification, scheduledTime As DateTimeOffset, tags As IEnumerable(Of String), cancellationToken As CancellationToken) As Task(Of ScheduledNotification)
Parameters
- notification
- Notification
The notification.
- scheduledTime
- DateTimeOffset
The scheduled time.
- tags
- IEnumerable<String>
The tags.
- cancellationToken
- CancellationToken
A CancellationToken to observe while waiting for a task to complete.
Returns
A task that represents the asynchronous operation.
Implements
Exceptions
Thrown when tags object is null
tags argument should contain at least one tag
Applies to
ScheduleNotificationAsync(Notification, DateTimeOffset, String, CancellationToken)
Schedules the notification asynchronously.
public System.Threading.Tasks.Task<Microsoft.Azure.NotificationHubs.ScheduledNotification> ScheduleNotificationAsync (Microsoft.Azure.NotificationHubs.Notification notification, DateTimeOffset scheduledTime, string tagExpression, System.Threading.CancellationToken cancellationToken);
abstract member ScheduleNotificationAsync : Microsoft.Azure.NotificationHubs.Notification * DateTimeOffset * string * System.Threading.CancellationToken -> System.Threading.Tasks.Task<Microsoft.Azure.NotificationHubs.ScheduledNotification>
override this.ScheduleNotificationAsync : Microsoft.Azure.NotificationHubs.Notification * DateTimeOffset * string * System.Threading.CancellationToken -> System.Threading.Tasks.Task<Microsoft.Azure.NotificationHubs.ScheduledNotification>
Public Function ScheduleNotificationAsync (notification As Notification, scheduledTime As DateTimeOffset, tagExpression As String, cancellationToken As CancellationToken) As Task(Of ScheduledNotification)
Parameters
- notification
- Notification
The notification.
- scheduledTime
- DateTimeOffset
The scheduled time.
- tagExpression
- String
The tag expression.
- cancellationToken
- CancellationToken
A CancellationToken to observe while waiting for a task to complete.
Returns
A task that represents the asynchronous operation.
Implements
Applies to
Azure SDK for .NET