C# Class XamarinEvolveSSLibrary.UserAccess

显示文件 Open project: bholmes/XamarinEvolve2013Project Class Usage Examples

Public Methods

Method Description
CommitCurrentUserChanges ( ) : void
CreateNewUser ( string username, string password, Action onComplete ) : void
DeleteUser ( ) : void
GetCurrentUser ( ) : User
GetUsers ( Action onComplete ) : void
Logout ( ) : void
UserLogin ( string username, string password, Action onComplete ) : void

Protected Methods

Method Description
CreateNewUser ( string username, string password ) : User
GetUsers ( ) : UserList
UserAsyncCall ( Func call, Action onComplete ) : void
UserListAsyncCall ( Func call, Action onComplete ) : void
UserLogin ( string username, string password ) : User

Method Details

CommitCurrentUserChanges() public method

public CommitCurrentUserChanges ( ) : void
return void

CreateNewUser() protected abstract method

protected abstract CreateNewUser ( string username, string password ) : User
username string
password string
return User

CreateNewUser() public method

public CreateNewUser ( string username, string password, Action onComplete ) : void
username string
password string
onComplete Action
return void

DeleteUser() public abstract method

public abstract DeleteUser ( ) : void
return void

GetCurrentUser() public abstract method

public abstract GetCurrentUser ( ) : User
return User

GetUsers() protected abstract method

protected abstract GetUsers ( ) : UserList
return UserList

GetUsers() public method

public GetUsers ( Action onComplete ) : void
onComplete Action
return void

Logout() public abstract method

public abstract Logout ( ) : void
return void

UserAsyncCall() protected method

protected UserAsyncCall ( Func call, Action onComplete ) : void
call Func
onComplete Action
return void

UserListAsyncCall() protected method

protected UserListAsyncCall ( Func call, Action onComplete ) : void
call Func
onComplete Action
return void

UserLogin() protected abstract method

protected abstract UserLogin ( string username, string password ) : User
username string
password string
return User

UserLogin() public method

public UserLogin ( string username, string password, Action onComplete ) : void
username string
password string
onComplete Action
return void