BlogEngine.Core.Providers.DbMembershipProvider.GetUser C# (CSharp) Method

GetUser() public method

Gets user information from the data source based on the unique identifier for the membership user. Provides an option to update the last-activity date/time stamp for the user.
public GetUser ( object providerUserKey, bool userIsOnline ) : System.Web.Security.MembershipUser
providerUserKey object The unique identifier for the membership user to get information for.
userIsOnline bool true to update the last-activity date/time stamp for the user; false to return user information without updating the last-activity date/time stamp for the user.
return System.Web.Security.MembershipUser
        public override MembershipUser GetUser(object providerUserKey, bool userIsOnline)
        {
            return this.GetUser(providerUserKey.ToString(), userIsOnline);
        }

Same methods

DbMembershipProvider::GetUser ( string username, bool userIsOnline ) : System.Web.Security.MembershipUser