duration (repetitionType) 元素
指定重複模式的時間長度。 此字串的格式為 PnYnMnDTnHnMnS, 其中 nY 是年數,nM 是月數,nD 是天數,'T' 是日期/時間分隔符號,nH 是小時數,nM 是分鐘數,nS 是秒數 (,例如 PT5M 指定 5 分鐘,P1M4DT2H5M 指定一個月, 四天、兩小時和五分鐘) 。 如需持續時間類型的詳細資訊,請參閱 https://go.microsoft.com/fwlink/p/?linkid=106886 。 如果未指定持續時間的值,則模式會無限期重複。 最小值為一分鐘。
<xs:element name="Duration"
minOccurs="0"
>
<xs:simpleType>
<xs:restriction
base="duration"
>
<xs:minInclusive
value="PT1M"
/>
</xs:restriction>
</xs:simpleType>
</xs:element>
元素是由 repetitionType 複雜類型所定義。
父元素
元素 | 衍生自 | Description |
---|---|---|
重複 | repetitionType | 指定工作執行的頻率,以及啟動工作之後重複重複模式的時間長度。 |
備註
針對腳本應用程式,模式的持續時間是使用 RepetitionPattern.Duration 屬性來指定。
針對 C++ 應用程式,會使用 IRepetitionPattern::D uration 屬性來指定模式的持續時間。
範例
下列 XML 會定義觸發程式的重複模式。
<Repetition>
<Interval></Interval>
<Duration></Duration>
<StopAtDurationEnd>true</StopAtDirationEnd>
</Repetition>
規格需求
需求 | 值 |
---|---|
最低支援的用戶端 |
Windows Vista [僅限傳統型應用程式] |
最低支援的伺服器 |
Windows Server 2008 [僅限傳統型應用程式] |