Registration Class

 

Registration is used to define a target that is registered for notifications

Namespace:   Microsoft.WindowsAzure.MobileServices
Assembly:  Microsoft.WindowsAzure.Mobile.Ext (in Microsoft.WindowsAzure.Mobile.Ext.dll)

Inheritance Hierarchy

System.Object
  Microsoft.WindowsAzure.MobileServices.Registration
    Microsoft.WindowsAzure.MobileServices.TemplateRegistration

Syntax

[JsonObjectAttribute(MemberSerialization.OptIn)]
[KnownTypeAttribute(typeof(TemplateRegistration))]
public class Registration
[JsonObjectAttribute(MemberSerialization::OptIn)]
[KnownTypeAttribute((TemplateRegistration^::typeid))]
public ref class Registration 
[<JsonObjectAttribute(MemberSerialization.OptIn)>]
[<KnownTypeAttribute(typeof(TemplateRegistration))>]
type Registration = class end
<JsonObjectAttribute(MemberSerialization.OptIn)>
<KnownTypeAttribute(GetType(TemplateRegistration))>
Public Class Registration

Constructors

Name Description
System_CAPS_pubmethod Registration(String)

Create a default Registration for a channelUri

System_CAPS_pubmethod Registration(String, IEnumerable<String>)

Create a default Registration for a channelUri with specific tags

Properties

Name Description
System_CAPS_pubproperty ChannelUri

The Uri of the Channel returned by the Push Notification Channel Manager.

System_CAPS_pubproperty RegistrationId

The registration id.

System_CAPS_pubproperty Tags

If specified, restricts the notifications that the registration will receive to only those that are annotated with one of the specified tags. Note that a tag with a comma in it will be split into two tags.

Methods

Name Description
System_CAPS_pubmethod Equals(Object)

(Inherited from Object.)

System_CAPS_protmethod Finalize()

(Inherited from Object.)

System_CAPS_pubmethod GetHashCode()

(Inherited from Object.)

System_CAPS_pubmethod GetType()

(Inherited from Object.)

System_CAPS_protmethod MemberwiseClone()

(Inherited from Object.)

System_CAPS_pubmethod ToString()

(Inherited from Object.)

Thread Safety

Any public static (Shared in Visual Basic) members of this type are thread safe. Any instance members are not guaranteed to be thread safe.

See Also

Microsoft.WindowsAzure.MobileServices Namespace

Return to top