As of April 12th, you must go to Progress SupportLink to create new support cases or to access existing cases. Please, bookmark the SupportLink URL and use the new portal to contact the support team.
Update code (fails with error) - Code from Xamarin documentation
myClient.User().Add("email", "test2@test.com");
User updated = await myClient.User().UpdateAsync();
Error:
Self referencing loop detected for property 'Member' with type 'System.Reflection.MonoMethod'. Path 'KinveyClient.logger.Method.ReturnTypeCustomAttributes'.
Aaron Hosey
I have just started using Kinvey and have not been unable to create a user with an email or update the user with the email.
Register code (creates user with no email)
AsyncUser myUser = myClient.User();
myUser.Add("email", "test@test.com");
myUser.Create(UsernameText.Text, PasswordText.Text, new KinveyDelegate<User> {
onSuccess = (user) => {
Console.WriteLine("user registration success");
},
onError = (error) => {
Console.WriteLine("base Exception -> " + error.GetBaseException());
Console.WriteLine("Registration failure");
}
});
Update code (fails with error) - Code from Xamarin documentation
myClient.User().Add("email", "test2@test.com");
User updated = await myClient.User().UpdateAsync();
Error:
Self referencing loop detected for property 'Member' with type 'System.Reflection.MonoMethod'. Path 'KinveyClient.logger.Method.ReturnTypeCustomAttributes'.