コード例 #1
0
ファイル: UserTest.cs プロジェクト: itetcetera/csharp-sdk
        public async Task UpdatePassword()
        {
            LCUser currentUser = await LCUser.Login("hello", "world");

            await currentUser.UpdatePassword("world", "newWorld");

            await currentUser.UpdatePassword("newWorld", "world");
        }