RecurringDayTransitionType.Occurrence Property
The Occurrence property gets or sets the day of the week in the month that the time zone transition occurs.
Namespace: ExchangeWebServices
Assembly: EWS (in EWS.dll)
Syntax
'Declaration
Public Property Occurrence As Integer
Get
Set
'Usage
Dim instance As RecurringDayTransitionType
Dim value As Integer
value = instance.Occurrence
instance.Occurrence = value
public int Occurrence { get; set; }
Property Value
Type: System.Int32
The value of the Occurrence property is an integer that represents the day of the week in the month that the time zone transition occurs. The following table lists the possible values.
Value |
Description |
---|---|
1 |
The first occurrence of the specified day of the week from the beginning of the month. |
2 |
The second occurrence of the specified day of the week from the beginning of the month. |
3 |
The third occurrence of the specified day of the week from the beginning of the month. |
4 |
The fourth occurrence of the specified day of the week from the beginning of the month. |
-1 |
The first occurrence of the specified day of the week from the end of the month. |
-2 |
The second occurrence of the specified day of the week from the end of the month. |
-3 |
The third occurrence of the specified day of the week from the end of the month. |
-4 |
The fourth occurrence of the specified day of the week from the end of the month. |
See Also