Spontaneous.WebApp.Services.UserProfileFacade.GetAllUserProfiles C# (CSharp) 메소드

GetAllUserProfiles() 공개 정적인 메소드

public static GetAllUserProfiles ( ) : System.Web.Security.MembershipUserCollection
리턴 System.Web.Security.MembershipUserCollection
        public static System.Web.Security.MembershipUserCollection GetAllUserProfiles()
        {
            System.Web.Security.MembershipUserCollection users = System.Web.Security.Membership.GetAllUsers();
            //userProfile = System.Web.Profile.ProfileBase.Create(logedInUser.UserName);
            //log.InfoFormat("[GetUserProfile] Loged in user UserName={0}.", userProfile.UserName);

            return users;
        }