NotificationHub.SecondaryTiles Property

 

Gets or sets the NotificationHub methods for secondary tiles.

Namespace:   Microsoft.WindowsAzure.Messaging
Assembly:  Microsoft.WindowsAzure.Messaging.Managed (in Microsoft.WindowsAzure.Messaging.Managed.dll)

Syntax

public IDictionary<string, NotificationHub> SecondaryTiles { get; set; }
public:
property IDictionary<String^, NotificationHub^>^ SecondaryTiles {
    IDictionary<String^, NotificationHub^>^ get();
    void set(IDictionary<String^, NotificationHub^>^ value);
}
member SecondaryTiles : IDictionary<string, NotificationHub> with get, set
Public Property SecondaryTiles As IDictionary(Of String, NotificationHub)

Property Value

Type: System.Collections.Generic.IDictionary<String, NotificationHub>

The list of secondary tiles.

Examples

hub.SecondaryTiles["mySecondaryTileId"].RegisterAsync(channel.Uri);

See Also

NotificationHub Class
Microsoft.WindowsAzure.Messaging Namespace

Return to top