Share via


Registration.Tags Property

 

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.

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

Syntax

[JsonPropertyAttribute(PropertyName = "tags")]
public ISet<string> Tags { get; internal set; }
public:
[JsonPropertyAttribute(PropertyName = "tags")]
property ISet<String^>^ Tags {
    ISet<String^>^ get();
    internal: void set(ISet<String^>^ value);
}
[<JsonPropertyAttribute(PropertyName = "tags")>]
member Tags : ISet<string> with get, internal set
<JsonPropertyAttribute(PropertyName := "tags")>
Public Property Tags As ISet(Of String)
    Get
    Friend Set
End Property

Property Value

Type: System.Collections.Generic.ISet<String>

See Also

Registration Class
Microsoft.WindowsAzure.MobileServices Namespace

Return to top