GooglePushMessage Class

 

The GooglePushMessage helps generating a notification payload targeting Google Cloud Messaging for Chrome (GCM). Notifications can be sent using the PushClient class which is available from the ApiServices class.

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

System.Object
  System.Collections.Generic.Dictionary(Of TKey, TValue)
    Microsoft.WindowsAzure.Mobile.Service.GooglePushMessage

<SerializableAttribute>
Public Class GooglePushMessage
	Inherits Dictionary(Of String, Object)
	Implements IPushMessage

NameDescription
System_CAPS_pubmethodGooglePushMessage()

Initializes a new instance of the GooglePushMessage class enabling creation of a notification message targeting Google Cloud Messaging for Chrome (GCM).Set the appropriate properties on the message and submit through the PushClient

System_CAPS_pubmethodGooglePushMessage(IDictionary(Of String, String), Nullable(Of TimeSpan))

Initializes a new instance of the GooglePushMessage class with a given set of data parameters and an optional timeToLive.

System_CAPS_protmethodGooglePushMessage(SerializationInfo, StreamingContext)

Initializes a new instance of the GooglePushMessage class with the specified serialization information and streaming context.

NameDescription
System_CAPS_pubpropertyCollapseKey

A collapse key is an arbitrary string that is used to collapse a group of like messages when the device is offline, so that only the most recent message gets sent to the client. For example, "New mail", "Updates available", and so on.

System_CAPS_pubpropertyComparer
System_CAPS_pubpropertyCount
System_CAPS_pubpropertyData

A collection or name-value properties to include in the message. Properties must be simple types, i.e. they can not be nested.

System_CAPS_pubpropertyDelayWhileIdle

Indicates whether the message should be delivered while the device is idle.

System_CAPS_pubpropertyItem(TKey)
System_CAPS_pubpropertyJsonPayload

As an alternative to building the notification by initializing the GooglePushMessage directly, it is possible to provide a complete JSON representation which will be sent to the Notification Hub unaltered.

System_CAPS_pubpropertyKeys
System_CAPS_pubpropertyTimeToLiveInSeconds

The Time to Live (TTL) property lets the sender specify the maximum lifespan of a message. The value of this parameter must be a duration from 0 to 2,419,200 seconds, and it corresponds to the maximum period of time for which GCM will store and try to deliver the message. Requests that don't contain this field default to the maximum period of 4 weeks.

System_CAPS_pubpropertyValues

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

Return to top
Show: