partial         void CopyExtraPropertiesToClone(SynchronizationScheduleConfiguration clone, bool includeLocalProperties);
 public SynchronizationScheduleConfiguration Clone(bool includeLocalProperties)
 {
     var c = new SynchronizationScheduleConfiguration
             {
                 HourOfDay = HourOfDay,
                 MinuteOfDay = MinuteOfDay,
                 PeriodInMinutes = PeriodInMinutes,
                 Type = Type,
             };
     CopyExtraPropertiesToClone(c, includeLocalProperties);
     return c;
 }