NotificationRecipientScheduleEntryTime Constructors
Definition
Important
Some information relates to prerelease product that may be substantially modified before itβs released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Initializes the NotificationRecipientScheduleEntryTime class.
Overloads
| NotificationRecipientScheduleEntryTime() |
Creates an empty entry time. |
| NotificationRecipientScheduleEntryTime(Int32) |
Creates an entry time. |
| NotificationRecipientScheduleEntryTime(Int32, Int32) |
Creates an entry time. |
NotificationRecipientScheduleEntryTime()
Creates an empty entry time.
public:
NotificationRecipientScheduleEntryTime();
public NotificationRecipientScheduleEntryTime ();
Public Sub New ()
Remarks
After creating a NotificationRecipientScheduleEntryTime object, use the object's properties to set the time's hours and minutes.
See also
Applies to
NotificationRecipientScheduleEntryTime(Int32)
Creates an entry time.
public:
NotificationRecipientScheduleEntryTime(int hour);
public NotificationRecipientScheduleEntryTime (int hour);
new Microsoft.EnterpriseManagement.Administration.NotificationRecipientScheduleEntryTime : int -> Microsoft.EnterpriseManagement.Administration.NotificationRecipientScheduleEntryTime
Public Sub New (hour As Integer)
Parameters
- hour
- Int32
The hour this time should represent.
Remarks
The possible range of values for the hour parameter is 0β23.
See also
Applies to
NotificationRecipientScheduleEntryTime(Int32, Int32)
Creates an entry time.
public:
NotificationRecipientScheduleEntryTime(int hour, int minute);
public NotificationRecipientScheduleEntryTime (int hour, int minute);
new Microsoft.EnterpriseManagement.Administration.NotificationRecipientScheduleEntryTime : int * int -> Microsoft.EnterpriseManagement.Administration.NotificationRecipientScheduleEntryTime
Public Sub New (hour As Integer, minute As Integer)
Parameters
- hour
- Int32
The hour this time should represent.
- minute
- Int32
The minute this time should represent.
Remarks
The possible range of values for the hour parameter is 0β23.
The possible range of values for the minute parameter is 0β59.