次の方法で共有


GooglePushMessage コンストラクター

定義

オーバーロード

GooglePushMessage()

クラスの新しいインスタンスを GooglePushMessage 初期化して、Google Cloud Messaging for Chrome (GCM) を対象とする通知メッセージを作成できるようにします。メッセージに適切なプロパティを設定し、 PushClient

GooglePushMessage(IDictionary<String,String>, Nullable<TimeSpan>)

パラメーターのセットと省略可能な を GooglePushMessage 使用して、 クラスの data 新しいインスタンスを初期化 timeToLiveします。

GooglePushMessage(SerializationInfo, StreamingContext)

指定したシリアル化情報とストリーム コンテキストを使用して、GooglePushMessage クラスの新しいインスタンスを初期化します。

GooglePushMessage()

クラスの新しいインスタンスを GooglePushMessage 初期化して、Google Cloud Messaging for Chrome (GCM) を対象とする通知メッセージを作成できるようにします。メッセージに適切なプロパティを設定し、 PushClient

public GooglePushMessage ();
Public Sub New ()

適用対象

GooglePushMessage(IDictionary<String,String>, Nullable<TimeSpan>)

パラメーターのセットと省略可能な を GooglePushMessage 使用して、 クラスの data 新しいインスタンスを初期化 timeToLiveします。

public GooglePushMessage (System.Collections.Generic.IDictionary<string,string> data, TimeSpan? timeToLive);
new Microsoft.WindowsAzure.Mobile.Service.GooglePushMessage : System.Collections.Generic.IDictionary<string, string> * Nullable<TimeSpan> -> Microsoft.WindowsAzure.Mobile.Service.GooglePushMessage
Public Sub New (data As IDictionary(Of String, String), timeToLive As Nullable(Of TimeSpan))

パラメーター

timeToLive
Nullable<TimeSpan>

現在の TimeSpan 時刻を基準とした 。 このパラメーターの値は、0 ~ 2,419,200 秒 (28 日) の期間である必要があります。これは、GCM がメッセージを格納して配信しようとする最大期間に対応します。 このフィールドを含まない要求の既定値は、最大 4 週間です。

適用対象

GooglePushMessage(SerializationInfo, StreamingContext)

指定したシリアル化情報とストリーム コンテキストを使用して、GooglePushMessage クラスの新しいインスタンスを初期化します。

protected GooglePushMessage (System.Runtime.Serialization.SerializationInfo info, System.Runtime.Serialization.StreamingContext context);
new Microsoft.WindowsAzure.Mobile.Service.GooglePushMessage : System.Runtime.Serialization.SerializationInfo * System.Runtime.Serialization.StreamingContext -> Microsoft.WindowsAzure.Mobile.Service.GooglePushMessage
Protected Sub New (info As SerializationInfo, context As StreamingContext)

パラメーター

info
SerializationInfo

初期化する SerializationInfo に関する情報を格納する GooglePushMessage

context
StreamingContext

シリアル化されたストリームの転送元と転送先、およびコンテキスト情報を示す StreamingContext

適用対象