INotificationHubClient.CreateMpnsNativeRegistrationAsync 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
CreateMpnsNativeRegistrationAsync(String) |
Asynchronously creates MPNS native registration. |
CreateMpnsNativeRegistrationAsync(String, IEnumerable<String>) |
Asynchronously creates MPNS native registration. |
CreateMpnsNativeRegistrationAsync(String)
Asynchronously creates MPNS native registration.
public System.Threading.Tasks.Task<Microsoft.Azure.NotificationHubs.MpnsRegistrationDescription> CreateMpnsNativeRegistrationAsync (string channelUri);
abstract member CreateMpnsNativeRegistrationAsync : string -> System.Threading.Tasks.Task<Microsoft.Azure.NotificationHubs.MpnsRegistrationDescription>
Public Function CreateMpnsNativeRegistrationAsync (channelUri As String) As Task(Of MpnsRegistrationDescription)
Parameters
- channelUri
- String
The channel URI.
Returns
The task that completes the asynchronous operation.
Applies to
CreateMpnsNativeRegistrationAsync(String, IEnumerable<String>)
Asynchronously creates MPNS native registration.
public System.Threading.Tasks.Task<Microsoft.Azure.NotificationHubs.MpnsRegistrationDescription> CreateMpnsNativeRegistrationAsync (string channelUri, System.Collections.Generic.IEnumerable<string> tags);
abstract member CreateMpnsNativeRegistrationAsync : string * seq<string> -> System.Threading.Tasks.Task<Microsoft.Azure.NotificationHubs.MpnsRegistrationDescription>
Public Function CreateMpnsNativeRegistrationAsync (channelUri As String, tags As IEnumerable(Of String)) As Task(Of MpnsRegistrationDescription)
Parameters
- channelUri
- String
The channel URI.
- tags
- IEnumerable<String>
The tags.
Returns
The task that completes the asynchronous operation.
Applies to
Collaborate with us on GitHub
The source for this content can be found on GitHub, where you can also create and review issues and pull requests. For more information, see our contributor guide.
Azure SDK for .NET