Use the SiteSync fluent API to invoke sync operations programmatically.
SiteSync
using
using Telerik.Sitefinity.SiteSync;
Then, get the facade: App.WorkWith().SiteSync()
App.WorkWith().SiteSync()
.SelectDefaultTarget()
.SelectTarget("http://targetserver")
.SetSites("site1", "site2", ...)
.Sync(typeof(NewsItem).FullName, ...)
.Sync(newsItem, CultureInfo.CurrentCulture)
.ScheduleSync(“30 15 5 3 * 2015”, typeof(NewsItem).FullName, …)
NOTE: Use Cron format to specify the scheduled time. For more information, see Cron Format.
Back To Top