NGWS SDK Documentation  

This is preliminary documentation and subject to change.
To comment on this topic, please send us email at ngwssdk@microsoft.com. Thanks!

RecurrencePattern.Interval

Gets or sets the recurrence pattern repetition rate for a specific day.

[Visual Basic]
Overridable Public Property Interval As TimeSpan
[C#]
public TimeSpan Interval {virtual get; virtual set;}
[C++]
public: __property virtual TimeSpan get_Interval();
public: __property virtual void set_Interval(TimeSpan);
[JScript]
public function get Interval() : TimeSpan;
public function set Interval(TimeSpan);

Property Value

A TimeSpan that represents the recurrence pattern repetition rate for a specific day. For example, the event should be raised every hour. The default value is 0.

Exceptions

Exception Type Condition
ArgumentException The Interval property is less than 0.

See Also

RecurrencePattern Class | RecurrencePattern Members | System.Timers Namespace | TimeSpan