AlertProperties Class
The "alert" property contains properties specific to the alert in a notification targeting Apple Push Notification Service (APNS). It is intended to be used from the ApplePushMessage class.
Namespace: Microsoft.WindowsAzure.Mobile.Service
Assembly: Microsoft.WindowsAzure.Mobile.Service (in Microsoft.WindowsAzure.Mobile.Service.dll)
Inheritance Hierarchy
System.Object
System.Collections.Generic.Dictionary<TKey, TValue>
Microsoft.WindowsAzure.Mobile.Service.AlertProperties
Syntax
[SerializableAttribute]
public class AlertProperties : Dictionary<string, object>
[SerializableAttribute]
public ref class AlertProperties : Dictionary<String^, Object^>
[<SerializableAttribute>]
type AlertProperties =
class
inherit Dictionary<string, Object>
end
<SerializableAttribute>
Public Class AlertProperties
Inherits Dictionary(Of String, Object)
Constructors
Name | Description | |
---|---|---|
AlertProperties() | Initializes a new instance of the AlertProperties class. |
|
AlertProperties(SerializationInfo, StreamingContext) | Initializes a new instance of the AlertProperties class with the specified serialization information and streaming context. |
Properties
Name | Description | |
---|---|---|
ActionLocKey | If a string is specified, the system displays an alert with two buttons. The string is used as a key to get a localized string in the current localization to use for the right button’s title instead of “View”. |
|
Body | The text of the alert message. |
|
Comparer | (Inherited from Dictionary<TKey, TValue>.) |
|
Count | (Inherited from Dictionary<TKey, TValue>.) |
|
Item[TKey] | (Inherited from Dictionary<TKey, TValue>.) |
|
Keys | (Inherited from Dictionary<TKey, TValue>.) |
|
LaunchImage | The filename of an image file in the application bundle; it may include the extension or omit it. The image is used as the launch image when users tap the action button or move the action slider. If this property is not specified, the system either uses the previous snapshot, uses the image identified by the UILaunchImageFile key in the application’s Info.plist file, or falls back to Default.png. |
|
LocKey | A key to an alert-message string in a Localizable.strings file for the current localization (which is set by the user’s language preference). The key string can be formatted with %@ and %n$@ specifiers to take the variables specified in loc-args. |
|
LogArgs | Variable string values to appear in place of the format specifiers in loc-key. |
|
Values | (Inherited from Dictionary<TKey, TValue>.) |
Methods
Name | Description | |
---|---|---|
Add(TKey, TValue) | (Inherited from Dictionary<TKey, TValue>.) |
|
Clear() | (Inherited from Dictionary<TKey, TValue>.) |
|
ContainsKey(TKey) | (Inherited from Dictionary<TKey, TValue>.) |
|
ContainsValue(TValue) | (Inherited from Dictionary<TKey, TValue>.) |
|
Equals(Object) | (Inherited from Object.) |
|
Finalize() | (Inherited from Object.) |
|
GetEnumerator() | (Inherited from Dictionary<TKey, TValue>.) |
|
GetHashCode() | (Inherited from Object.) |
|
GetObjectData(SerializationInfo, StreamingContext) | (Inherited from Dictionary<TKey, TValue>.) |
|
GetType() | (Inherited from Object.) |
|
MemberwiseClone() | (Inherited from Object.) |
|
OnDeserialization(Object) | (Inherited from Dictionary<TKey, TValue>.) |
|
Remove(TKey) | (Inherited from Dictionary<TKey, TValue>.) |
|
ToString() | (Inherited from Object.) |
|
TryGetValue(TKey, TValue) | (Inherited from Dictionary<TKey, TValue>.) |
Explicit Interface Implementations
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 Namespace
Return to top