Alarm Constructor

[ This article is for Windows Phone 8 developers. If you’re developing for Windows 10, see the latest documentation. ]

Initializes a new instance of the Alarm class.

Namespace:  Microsoft.Phone.Scheduler
Assembly:  Microsoft.Phone (in Microsoft.Phone.dll)

Syntax

Public Sub New ( _
    name As String _
)
public Alarm(
    string name
)

Parameters

Exceptions

Exception Condition
ArgumentNullException

The name string cannot be null.

ArgumentOutOfRangeException

The name string cannot be zero length. The maximum length of the name string is 63 characters. The string can contain only printable ASCII characters (character values between 32 and 126).

Remarks

The Name property is used by the system to identify notifications, so the value must be unique per application. Attempting to add a notification with a name that already exists for your application in the system will throw an exception.

The maximum length of the name string is 63 characters. The string can contain only printable ASCII characters (character values between 32 and 126).

Version Information

Windows Phone OS

Supported in: 8.1, 8.0, 7.1

Platforms

Windows Phone

See Also

Reference

Alarm Class

Microsoft.Phone.Scheduler Namespace