次の方法で共有


RecurrencePattern コンストラクター

定義

オーバーロード

RecurrencePattern()

RecurrencePattern クラスの新しいインスタンスを初期化します。

RecurrencePattern(RecurrenceFrequency, DateTime, IList<Nullable<WeekDay>>, Nullable<Int32>)

RecurrencePattern クラスの新しいインスタンスを初期化します。

RecurrencePattern()

RecurrencePattern クラスの新しいインスタンスを初期化します。

public RecurrencePattern ();
Public Sub New ()

適用対象

RecurrencePattern(RecurrenceFrequency, DateTime, IList<Nullable<WeekDay>>, Nullable<Int32>)

RecurrencePattern クラスの新しいインスタンスを初期化します。

public RecurrencePattern (Microsoft.Azure.Management.LabServices.Models.RecurrenceFrequency frequency, DateTime expirationDate, System.Collections.Generic.IList<Microsoft.Azure.Management.LabServices.Models.WeekDay?> weekDays = default, int? interval = default);
new Microsoft.Azure.Management.LabServices.Models.RecurrencePattern : Microsoft.Azure.Management.LabServices.Models.RecurrenceFrequency * DateTime * System.Collections.Generic.IList<Nullable<Microsoft.Azure.Management.LabServices.Models.WeekDay>> * Nullable<int> -> Microsoft.Azure.Management.LabServices.Models.RecurrencePattern
Public Sub New (frequency As RecurrenceFrequency, expirationDate As DateTime, Optional weekDays As IList(Of Nullable(Of WeekDay)) = Nothing, Optional interval As Nullable(Of Integer) = Nothing)

パラメーター

frequency
RecurrenceFrequency

繰り返しの頻度。 使用可能な値は、次のとおりです: 'Daily'、'Weekly'

expirationDate
DateTime

繰り返しの有効期限が切れるタイミング。 この日付は包括的です。

weekDays
IList<Nullable<WeekDay>>

スケジュールが実行される曜日。 [頻度] が [毎週] に設定されている場合に使用します。

interval
Nullable<Int32>

スケジュールを呼び出す間隔。 たとえば、interval = 2、RecurrenceFrequency.Daily は 2 日ごとに実行されます。 間隔が指定されていない場合は、1 の間隔が使用されます。

適用対象