Share via


FlipTile Class

 

Represents a Flip Tile targeting MPNS. Use the FlipTile with MpnsPushMessage to create an MPNS notification and send it using the PushClient.

Namespace:   Microsoft.WindowsAzure.Mobile.Service.Notifications
Assembly:  Microsoft.WindowsAzure.Mobile.Service (in Microsoft.WindowsAzure.Mobile.Service.dll)

Inheritance Hierarchy

System.Object
  Microsoft.WindowsAzure.Mobile.Service.Notifications.MpnsMessage
    Microsoft.WindowsAzure.Mobile.Service.Notifications.MpnsTileMessage
      Microsoft.WindowsAzure.Mobile.Service.Notifications.FlipTile

Syntax

public class FlipTile : MpnsTileMessage
public ref class FlipTile : MpnsTileMessage
type FlipTile = 
    class
        inherit MpnsTileMessage
    end
Public Class FlipTile
    Inherits MpnsTileMessage

Constructors

Name Description
System_CAPS_pubmethod FlipTile()

Initialize a new instance of the FlipTile class.

Properties

Name Description
System_CAPS_pubproperty BackBackgroundImage

Gets or sets a background image of the back of the tile. If this property is an empty URI, the background image of the back of the tile will not change during an update.

System_CAPS_pubproperty BackContent

Gets or sets the text to display on the back of the tile, above the title. If this property is an empty string, the content on the back of the tile will not change during an update.

System_CAPS_pubproperty BackgroundImage

Gets or sets the background image of the front of the tile. If this property is an empty URI, the background image of the front of the tile will not change during an update.

System_CAPS_pubproperty BackTitle

Gets or sets the title to display at the bottom of the back of the tile. If this property is an empty string, the title on the back of the tile will not change during an update.

System_CAPS_pubproperty Count

Gets or sets a value between 1 and 99 that will be displayed in the Count field of the Tile. A value of 0 means the Count will not be displayed. If this property is not set, the Count display will not change during an update.(Inherited from MpnsTileMessage.)

System_CAPS_pubproperty Id

Gets or sets the optional ID or the tile.(Inherited from MpnsTileMessage.)

System_CAPS_protproperty Properties

Gets the properties associated with this toast or tile.(Inherited from MpnsMessage.)

System_CAPS_pubproperty SmallBackgroundImage

Gets and sets the front-side background image for the small tile size.

System_CAPS_protproperty Template

Gets or sets the template name of the tile or toast, e.g. "FlipTile", or null if there is no template name.(Inherited from MpnsMessage.)

System_CAPS_protproperty TileId

Gets or sets the id of the tile.(Inherited from MpnsMessage.)

System_CAPS_pubproperty Title

Gets or sets the text that displays on the front side of the medium and wide tile sizes.(Inherited from MpnsTileMessage.)

System_CAPS_protproperty Version

Gets or sets the version of the tile or toast, e.g. "2.0", or null if there is no version.(Inherited from MpnsMessage.)

System_CAPS_pubproperty WideBackBackgroundImage

Gets and sets the back-side background image for the wide tile size.

System_CAPS_pubproperty WideBackContent

Gets and sets the text that displays above the title, on the back-side of the wide tile size.

System_CAPS_pubproperty WideBackgroundImage

Gets and sets the front-side background image for the wide tile size.

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.)

Explicit Interface Implementations

Name Description
System_CAPS_pubinterfaceSystem_CAPS_privmethod IXmlSerializable.GetSchema()

(Inherited from MpnsMessage.)

System_CAPS_pubinterfaceSystem_CAPS_privmethod IXmlSerializable.ReadXml(XmlReader)

(Inherited from MpnsMessage.)

System_CAPS_pubinterfaceSystem_CAPS_privmethod IXmlSerializable.WriteXml(XmlWriter)

(Inherited from MpnsMessage.)

Remarks

For more information about MPNS Flip Tiles, see https://msdn.microsoft.com/library/windowsphone/develop/jj206971.

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.Mobile.Service.Notifications Namespace

Return to top