Пример #1
0
 protected override bool ShouldNotify(SPChangeList change)
 {
     if (change.ChangeType == SPChangeType.ListContentTypeAdd)
     {
         if (descriptor.Contains(change.ContentTypeId))
         {
             monitoredLists.Add(change.Id);
         }
     }
     return(false);
 }
Пример #2
0
 protected virtual bool ShouldNotify(SPChangeList change)
 {
     return(true);
 }
Пример #3
0
 protected override bool ShouldNotify(SPChangeList change)
 {
     return(change.Id == listId);
 }