This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| // OneWay Publish | |
| // Publish an one-way message for default or specified context | |
| NotificationService.PublishAsync(myMessage); | |
| NotificationService.PublishAsync(myMessage, "myContext"); | |
| // Adds a message to the pending notification queue | |
| NotificationService.DelayedPublishAsync(myMessage); | |
| // Adds a message to the pending notification queue for the specified context | |
| NotificationService.DelayedPublishAsync(myMessage, "myContext"); |
OlderNewer