SPAlerCollection class can be used to get the Alert Collection for the User.
The below code snippet is used to read all alerts registered for the site collection users.
private
static
void GetAlerts()
{
SPSite currSite = new
SPSite(“http://uday”);
SPWeb currWeb = currSite.OpenWeb();
SPUserCollection collUsers = currWeb.Users;
try
{
foreach (SPUser usr in collUsers)
{
Console.WriteLine(“Alerts for the User : “ + usr.Name);
foreach (SPAlert alrt in usr.Alerts)
{
Console.WriteLine(alrt.Item.Title + ” –> “ + alrt.AlertFrequency);
}
}
}
catch
{
}
Console.ReadLine();
}
}
Leave a Reply