GcmRegistrationDescription Constructors

Definition

Overloads

GcmRegistrationDescription(FcmRegistrationDescription)

Creates an instance of GcmRegistrationDescription class from FcmRegistrationDescription object.

GcmRegistrationDescription(GcmRegistrationDescription)

Creates instance of GcmRegistrationDescription class by copying fields from the given instance

GcmRegistrationDescription(String)

Creates instance of GcmRegistrationDescription class using given Google Cloud Messaging registration id

GcmRegistrationDescription(String, IEnumerable<String>)

Creates instance of GcmRegistrationDescription class using given Google Cloud Messaging registration id and collection of tags

GcmRegistrationDescription(FcmRegistrationDescription)

Creates an instance of GcmRegistrationDescription class from FcmRegistrationDescription object.

public GcmRegistrationDescription (Microsoft.Azure.NotificationHubs.FcmRegistrationDescription fcmRegistration);
new Microsoft.Azure.NotificationHubs.GcmRegistrationDescription : Microsoft.Azure.NotificationHubs.FcmRegistrationDescription -> Microsoft.Azure.NotificationHubs.GcmRegistrationDescription
Public Sub New (fcmRegistration As FcmRegistrationDescription)

Parameters

fcmRegistration
FcmRegistrationDescription

FcmRegistrationDescription object to create GcmRegistrationDescription from.

Applies to

GcmRegistrationDescription(GcmRegistrationDescription)

Creates instance of GcmRegistrationDescription class by copying fields from the given instance

public GcmRegistrationDescription (Microsoft.Azure.NotificationHubs.GcmRegistrationDescription sourceRegistration);
new Microsoft.Azure.NotificationHubs.GcmRegistrationDescription : Microsoft.Azure.NotificationHubs.GcmRegistrationDescription -> Microsoft.Azure.NotificationHubs.GcmRegistrationDescription
Public Sub New (sourceRegistration As GcmRegistrationDescription)

Parameters

sourceRegistration
GcmRegistrationDescription

Another GcmRegistrationDescription instance fields values are copyed from

Applies to

GcmRegistrationDescription(String)

Creates instance of GcmRegistrationDescription class using given Google Cloud Messaging registration id

public GcmRegistrationDescription (string gcmRegistrationId);
new Microsoft.Azure.NotificationHubs.GcmRegistrationDescription : string -> Microsoft.Azure.NotificationHubs.GcmRegistrationDescription
Public Sub New (gcmRegistrationId As String)

Parameters

gcmRegistrationId
String

Registration id obtained from the Google Cloud Messaging service

Applies to

GcmRegistrationDescription(String, IEnumerable<String>)

Creates instance of GcmRegistrationDescription class using given Google Cloud Messaging registration id and collection of tags

public GcmRegistrationDescription (string gcmRegistrationId, System.Collections.Generic.IEnumerable<string> tags);
new Microsoft.Azure.NotificationHubs.GcmRegistrationDescription : string * seq<string> -> Microsoft.Azure.NotificationHubs.GcmRegistrationDescription
Public Sub New (gcmRegistrationId As String, tags As IEnumerable(Of String))

Parameters

gcmRegistrationId
String

Registration id obtained from the Google Cloud Messaging service

tags
IEnumerable<String>

Collection of tags. Tags can be used for audience targeting purposes.

Applies to