Skip to content

Instantly share code, notes, and snippets.

@abjerner
Created June 19, 2015 17:42
Show Gist options
  • Save abjerner/6fb655916f95cf0fd539 to your computer and use it in GitHub Desktop.
Save abjerner/6fb655916f95cf0fd539 to your computer and use it in GitHub Desktop.
Listing all members in Umbraco:
@using Umbraco.Core.Services
@inherits UmbracoViewPage
@{
IMemberService ms = UmbracoContext.Application.Services.MemberService;
int total;
foreach (IMember member in ms.GetAll(0, Int32.MaxValue, out total)) {
<p>@member.Name</p>
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment