Webmasters, gagnez de l'argent en affichant des bannières contextuelles Oxado
SourceForge.net Logo
Support This Project
   LeCouteauSuisse Project
Welcome ! [ Home ]  ·  [ Downloads ]  ·  [ Forums ]  ·  [ News ]  ·  [ Documentations ]  
[ Home ]

[ Documentations ]

RecurrenceGenerator


This generator launch an event every a customizable period. The period is configure using a Recurrence Rule with the format describe in RFC 2445. This generator use the RecurrenceEvent class. Sample of a rule is 'FREQ=DAILY', it will launch an event every day. You can use the RecurrenceCoding.exe tool to help you coding and testing recurrence rules.

See Service Configuration for detailled information to configure your service. You must declare this generator with the <generator> section inside the <generators> section. It will looks like :

<generator name="MyGeneratorName" type="LeCouteauSuisse.Components.RecurrenceGenerator, 
		LeCouteauSuisseComponents, Version=1.0.0.2, Culture=neutral, PublicKeyToken=8d1037c5df6d5bd0">
This component have some parameters inside the section <settings>. Each parameter is written with a <setting> section.

Key nameMandatoryDefault valueDescription
ruleYes The recurrence rule.
startNoDate and time when generator startA date and time from wich the rule will be applied. The format is yyyyMMddTHHmmss for a local date and time and yyyyMMddTHHmmssZ for a UTC date and time. Where :
  • yyyy is year on four digit.
  • MM is month on two digit (01 to 12)
  • dd is day of month on two digit (01 to 31)
  • HH is hour on two digit (00 to 23)
  • mm is minute on two digit (00 to 59)
  • ss is second on two digit (00 to 59)
dataNo Private data you want to add to each event generated.


LeCouteauSuisse