NotificationRecipientScheduleEntryTime Constructors

Definition

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.

See also

Applies to