File: D:/HostingSpaces/MBoogaard/oosting-horseriding.com/wwwroot/CMSPages/IntegrationNotify.aspx.cs
using System;
using System.Web;
using System.Web.UI;
using System.Web.UI.WebControls;
using CMS.Helpers;
using CMS.Synchronization;
using CMS.UIControls;
public partial class CMSPages_IntegrationNotify : CMSPage
{
protected void Page_Load(object sender, EventArgs e)
{
string connectorName = QueryHelper.GetString("connectorName", string.Empty);
if (string.IsNullOrEmpty(connectorName))
{
// Process external tasks for all connectors
IntegrationHelper.ProcessExternalTasksAsync();
}
else
{
// Process external tasks of specified connector
IntegrationHelper.ProcessExternalTasksAsync(connectorName);
}
}
}