コード例 #1
0
ファイル: Client.cs プロジェクト: spreiter301/usergrid
 public void Login(string loginId, string secret, AuthType authType)
 {
     AuthenticationManager.Login(loginId, secret, authType);
 }
コード例 #2
0
ファイル: Client.cs プロジェクト: spreiter301/usergrid
 public void ChangePassword(string identifer /*username or uuid or email*/, string oldPassword, string newPassword)
 {
     AuthenticationManager.ChangePassword(identifer, oldPassword, newPassword);
 }