Show / Hide Table of Contents

Class ISN_UNTimeIntervalNotificationTrigger

The time that must expire before the delivery of a local notification.

Inheritance
System.Object
ISN_UNNotificationTrigger
ISN_UNTimeIntervalNotificationTrigger
Inherited Members
ISN_UNNotificationTrigger.m_Repeats
ISN_UNNotificationTrigger.m_NextTriggerDate
ISN_UNNotificationTrigger.m_Type
ISN_UNNotificationTrigger.m_TimeInterval
ISN_UNNotificationTrigger.m_DateComponents
ISN_UNNotificationTrigger.m_Region
ISN_UNNotificationTrigger.Repeats
ISN_UNNotificationTrigger.NextTriggerDate
ISN_UNNotificationTrigger.Type
ISN_UNNotificationTrigger.Convert()
System.Object.Equals(System.Object)
System.Object.Equals(System.Object, System.Object)
System.Object.GetHashCode()
System.Object.GetType()
System.Object.MemberwiseClone()
System.Object.ToString()
System.Object.ReferenceEquals(System.Object, System.Object)
Namespace: SA.iOS.UserNotifications
Assembly: cs.temp.dll.dll
Syntax
public class ISN_UNTimeIntervalNotificationTrigger : ISN_UNNotificationTrigger

Constructors

ISN_UNTimeIntervalNotificationTrigger(Int64, Boolean)

Creates and returns a time interval trigger from the specified time value.

Declaration
public ISN_UNTimeIntervalNotificationTrigger(long timeInterval, bool repeats)
Parameters
Type Name Description
System.Int64 timeInterval

The time (in seconds) that must elapse before the trigger fires. This value must be greater than zero.

System.Boolean repeats

Specify false to unschedule the notification after the trigger fires. Specify true if you want the notification to be rescheduled after it fires.

Properties

TimeInterval

The time interval used to create the trigger.

This property contains the original time interval that you specified when creating the trigger object. T he value in this property is not updated as time counts down. To find out when the trigger will fire next, call the NextTriggerDate property.

Declaration
public long TimeInterval { get; set; }
Property Value
Type Description
System.Int64
In This Article
Back to top Generated by DocFX