...
Code Block | ||||||
---|---|---|---|---|---|---|
| ||||||
<SetVariable Name="$(Result)">
<DateTimeAdd Part="Second">
<Value Target="Date">::/Production/User[1]/@LastLogin</Value>
<Value Target="Integer">2</Value>
</DateTimeAdd>
</SetVariable> |
...
Örnek sentaks a göre ilk Value tarih değerini tarih tipinde tutarken ikinci Value ise integer tipinde değer tutar.
Özellikler
...
Adı | Açıklama | |||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
Part | Birim Bölümü bu bölümde bildirilir.
|
...
Code Block | ||||||
---|---|---|---|---|---|---|
| ||||||
<SetVariable Name="$(Result)">
<DateTimeAdd Part="Hour">
<Value Target="Date">::/Production/User[1]/@LastLogin</Value>
<Value Target="Integer">2</Value>
</DateTimeAdd>
</SetVariable> |
...
$(Result) tarih tipinde vir değerdir ve bu değer /Production/User[1]/@LastLogin yolunda bulunan tarih değerine ikinci Value de bulunan 2 değerini Day(Gün) olarak eklenmesi ile elde edilen sonuç değerini tutar.
Code Block | ||||||
---|---|---|---|---|---|---|
| ||||||
<SetVariable Name="$(Result)">
<DateTimeAdd Part="Day">
<Value Target="Date">::/Production/User[1]/@LastLogin</Value>
<Value Target="Integer">2</Value>
</DateTimeAdd>
</SetVariable> |
...
$(Result) tarih tipinde vir değerdir ve bu değer /Production/User[1]/@LastLogin yolunda bulunan tarih değerine ikinci Value de bulunan 2 değerini Month(Ay) olarak eklenmesi ile elde edilen sonuç değerini tutar..
Code Block | ||||||
---|---|---|---|---|---|---|
| ||||||
<SetVariable Name="$(Result)">
<DateTimeAdd Part="Month">
<Value Target="Date">::/Production/User[1]/@LastLogin</Value>
<Value Target="Integer">2</Value>
</DateTimeAdd>
</SetVariable> |
...