I am really looking for a way to be notified of any changes to a SharePoint group. At first I, although I could do this by associating an event handler with some list of groups. But, unfortunately, there is no such list representing SharePoint groups.
My second attempt was to associate an event handler with a SharePointGroup content type, but that didn't work either.
So are there any other options to receive event notifications in a SharePoint group?
EDIT:
Thanks for the answer.
I forgot to mention that I already played on Google and read the list of users. Unfortunately.
First, I found a forum entry where I posted the relative URL in the list of user data (_catalogs / users / simple.aspx). When I use this link to view the list, it contains only users and groups. I don't know, but maybe this link does some filtering on the list.
Other information that I found on several blogs and forums was that an event handler attached to a list of user data does not start in events. I have to admit after reading that it does not work so many times and even on MSDN ( http://msdn.microsoft.com/en-us/library/aa979520.aspx ), I have not tried this on my own.
The problem associated with the event handler with the content type was not tied, the handler simply did not work when, for example, I changed the name of the group or removed the user from the group. I have no idea why the handler is not called. I am sure that I applied the correct methods and bound them to the correct events.
Any other suggestions on how to get information about changes in SharePoint groups?
source share