27 lines
687 B
C#
27 lines
687 B
C#
using Microsoft.SharePoint;
|
|
using System;
|
|
namespace SPSolutions.SharePoint.Alerts.Tokenization
|
|
{
|
|
public class AlertDetailsTableTokenizer : TokenizerDecorator
|
|
{
|
|
private SPAlertHandlerParams m_alertHandlerParams;
|
|
private string m_notificationMessageXslt;
|
|
public AlertDetailsTableTokenizer()
|
|
{
|
|
}
|
|
public AlertDetailsTableTokenizer(SPAlertHandlerParams alertHandlerParams, string notificationMessageXslt)
|
|
{
|
|
this.m_alertHandlerParams = alertHandlerParams;
|
|
this.m_notificationMessageXslt = notificationMessageXslt;
|
|
}
|
|
public override void PopulateTokenValues()
|
|
{
|
|
base.PopulateTokenValues();
|
|
this.AddedBehavior();
|
|
}
|
|
private void AddedBehavior()
|
|
{
|
|
}
|
|
}
|
|
}
|