IUserAuthRepository
Assembly: ServiceStack.dll
View Source
Declaration
public interface IUserAuthRepository : IAuthRepository
Methods
CreateUserAuth(IUserAuth, String)
View Source
Declaration
IUserAuth CreateUserAuth(IUserAuth newUser, string password)
Returns
Parameters
Type | Name |
---|---|
ServiceStack.Auth.IUserAuth | newUser |
System.String | password |
UpdateUserAuth(IUserAuth, IUserAuth)
View Source
Declaration
IUserAuth UpdateUserAuth(IUserAuth existingUser, IUserAuth newUser)
Returns
Parameters
Type | Name |
---|---|
ServiceStack.Auth.IUserAuth | existingUser |
ServiceStack.Auth.IUserAuth | newUser |
UpdateUserAuth(IUserAuth, IUserAuth, String)
View Source
Declaration
IUserAuth UpdateUserAuth(IUserAuth existingUser, IUserAuth newUser, string password)
Returns
Parameters
Type | Name |
---|---|
ServiceStack.Auth.IUserAuth | existingUser |
ServiceStack.Auth.IUserAuth | newUser |
System.String | password |
GetUserAuth(String)
View Source
Declaration
IUserAuth GetUserAuth(string userAuthId)
Returns
Parameters
Type | Name |
---|---|
System.String | userAuthId |
DeleteUserAuth(String)
View Source
Declaration
void DeleteUserAuth(string userAuthId)
Parameters
Type | Name |
---|---|
System.String | userAuthId |