You can use the following API call. The member methods are obsolete but still the easiest way to achieve this. Make sure to cache the result since it is very slow. For MemberExport I did a direct database call to get all the info
I gues this isn't documented, you might find something in the WIKI when you search for MemberGroup but real API documentation is missing at the moment.
The way I learnt to find my way around the Umbraco core APIs was to have open Reflector.NET and browsed through the classes/methods (Reflector has a good search function too).
Small note, since I started with Umbraco, Reflector is no longer "free" ... so if you want an open-source alternative, then try ILSpy.
How to get member list from group name
hi,
i want to get all member detail from group name like "Editor", how to do that?
thanks
Hi,
You can use the following API call. The member methods are obsolete but still the easiest way to achieve this. Make sure to cache the result since it is very slow. For MemberExport I did a direct database call to get all the info
MemberGroup.GetByName("Editor").GetMembers();
Cheers,
Richard
thanks. Richard, can you tell me where i can find list of function with description?
Hi,
I gues this isn't documented, you might find something in the WIKI when you search for MemberGroup but real API documentation is missing at the moment.
Cheers,
Richard
thanks again. i think now umbraco is difficult to find document.
Hi notarry,
The way I learnt to find my way around the Umbraco core APIs was to have open Reflector.NET and browsed through the classes/methods (Reflector has a good search function too).
Small note, since I started with Umbraco, Reflector is no longer "free" ... so if you want an open-source alternative, then try ILSpy.
Cheers, Lee.
Hi,
As well as ILSpy, there's also dotPeek which is also free.
is working on a reply...