C# Class RedisProviders.RedisMembershipProvider

Inheritance: System.Web.Security.MembershipProvider
Mostrar archivo Open project: kylesonaty/AspNetRedisProviders

Public Methods

Method Description
ChangePassword ( string username, string oldPassword, string newPassword ) : bool
ChangePasswordQuestionAndAnswer ( string username, string password, string newPasswordQuestion, string newPasswordAnswer ) : bool
CreateMembershipUserFromDictionary ( byte[]>.Dictionary dict ) : System.Web.Security.MembershipUser
CreateUser ( string username, string password, string email, string passwordQuestion, string passwordAnswer, bool isApproved, object providerUserKey, MembershipCreateStatus &status ) : System.Web.Security.MembershipUser
CreateUserDictionary ( string username, string password, string email, string passwordQuestion, string passwordAnswer, bool isApproved, System.Guid providerUserKey, System.DateTime createDate ) : byte[]>.Dictionary
DeleteUser ( string username, bool deleteAllRelatedData ) : bool
FindUsersByEmail ( string emailToMatch, int pageIndex, int pageSize, int &totalRecords ) : System.Web.Security.MembershipUserCollection
FindUsersByName ( string usernameToMatch, int pageIndex, int pageSize, int &totalRecords ) : System.Web.Security.MembershipUserCollection
GetAllUsers ( int pageIndex, int pageSize, int &totalRecords ) : System.Web.Security.MembershipUserCollection
GetNumberOfUsersOnline ( ) : int
GetPassword ( string username, string answer ) : string
GetUser ( object providerUserKey, bool userIsOnline ) : System.Web.Security.MembershipUser
GetUser ( string username, bool userIsOnline ) : System.Web.Security.MembershipUser
GetUserNameByEmail ( string email ) : string
Initialize ( string name, NameValueCollection config ) : void
ResetPassword ( string username, string answer ) : string
UnlockUser ( string username ) : bool
UpdateUser ( System.Web.Security.MembershipUser user ) : void
ValidateUser ( string username, string password ) : bool

Private Methods

Method Description
CheckPassword ( string password, string dbpassword ) : bool
EncodePassword ( string password ) : string
GetConfigValue ( string configValue, string defaultValue ) : string
GetConnection ( ) : RedisConnection
GetEmailKey ( string email ) : string
GetProviderKey ( object providerKey ) : string
GetUserKey ( string username ) : string
GetUsersCountKey ( ) : string
GetUsersKey ( ) : string
GetUsersOnlineKey ( ) : string
HexToByte ( string hexString ) : byte[]
OnConnectionError ( object sender, BookSleeve.ErrorEventArgs args ) : void
SetLastActivityDate ( string username, RedisConnection connection ) : void
UnEncodePassword ( string encodedPassword ) : string
UpdateFailureCount ( string username, string failureType ) : void
WriteToEventLog ( Exception ex, string action ) : void

Method Details

ChangePassword() public method

public ChangePassword ( string username, string oldPassword, string newPassword ) : bool
username string
oldPassword string
newPassword string
return bool

ChangePasswordQuestionAndAnswer() public method

public ChangePasswordQuestionAndAnswer ( string username, string password, string newPasswordQuestion, string newPasswordAnswer ) : bool
username string
password string
newPasswordQuestion string
newPasswordAnswer string
return bool

CreateMembershipUserFromDictionary() public method

public CreateMembershipUserFromDictionary ( byte[]>.Dictionary dict ) : System.Web.Security.MembershipUser
dict byte[]>.Dictionary
return System.Web.Security.MembershipUser

CreateUser() public method

public CreateUser ( string username, string password, string email, string passwordQuestion, string passwordAnswer, bool isApproved, object providerUserKey, MembershipCreateStatus &status ) : System.Web.Security.MembershipUser
username string
password string
email string
passwordQuestion string
passwordAnswer string
isApproved bool
providerUserKey object
status MembershipCreateStatus
return System.Web.Security.MembershipUser

CreateUserDictionary() public method

public CreateUserDictionary ( string username, string password, string email, string passwordQuestion, string passwordAnswer, bool isApproved, System.Guid providerUserKey, System.DateTime createDate ) : byte[]>.Dictionary
username string
password string
email string
passwordQuestion string
passwordAnswer string
isApproved bool
providerUserKey System.Guid
createDate System.DateTime
return byte[]>.Dictionary

DeleteUser() public method

public DeleteUser ( string username, bool deleteAllRelatedData ) : bool
username string
deleteAllRelatedData bool
return bool

FindUsersByEmail() public method

public FindUsersByEmail ( string emailToMatch, int pageIndex, int pageSize, int &totalRecords ) : System.Web.Security.MembershipUserCollection
emailToMatch string
pageIndex int
pageSize int
totalRecords int
return System.Web.Security.MembershipUserCollection

FindUsersByName() public method

public FindUsersByName ( string usernameToMatch, int pageIndex, int pageSize, int &totalRecords ) : System.Web.Security.MembershipUserCollection
usernameToMatch string
pageIndex int
pageSize int
totalRecords int
return System.Web.Security.MembershipUserCollection

GetAllUsers() public method

public GetAllUsers ( int pageIndex, int pageSize, int &totalRecords ) : System.Web.Security.MembershipUserCollection
pageIndex int
pageSize int
totalRecords int
return System.Web.Security.MembershipUserCollection

GetNumberOfUsersOnline() public method

public GetNumberOfUsersOnline ( ) : int
return int

GetPassword() public method

public GetPassword ( string username, string answer ) : string
username string
answer string
return string

GetUser() public method

public GetUser ( object providerUserKey, bool userIsOnline ) : System.Web.Security.MembershipUser
providerUserKey object
userIsOnline bool
return System.Web.Security.MembershipUser

GetUser() public method

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

GetUserNameByEmail() public method

public GetUserNameByEmail ( string email ) : string
email string
return string

Initialize() public method

public Initialize ( string name, NameValueCollection config ) : void
name string
config System.Collections.Specialized.NameValueCollection
return void

ResetPassword() public method

public ResetPassword ( string username, string answer ) : string
username string
answer string
return string

UnlockUser() public method

public UnlockUser ( string username ) : bool
username string
return bool

UpdateUser() public method

public UpdateUser ( System.Web.Security.MembershipUser user ) : void
user System.Web.Security.MembershipUser
return void

ValidateUser() public method

public ValidateUser ( string username, string password ) : bool
username string
password string
return bool