Notifications
GenerateSitemapNodeNotification
public class ExampleSitemapNodeNotification : INotificationHandler<GenerateSitemapNodeNotification>
{
public void Handle(GenerateSitemapNodeNotification notification)
{
notification.Node.Priority ??= 0.5;
}
}GenerateSitemapNotification
public class ExampleSitemapNotification : INotificationHandler<GenerateSitemapNotification>
{
public void Handle(GenerateSitemapNotification notification)
{
notification.Nodes.Add(new SitemapNodeItem("https://google.nl"));
}
}BeforeMetaTagsNotification
AfterMetaTagsNotification
Last updated