Attempting to pass some parameters to my custom API running on azure mobile service, using a List reference and Object to sent as parameters.Then I'm facing this Error.
Could not determine JSON object type for type App7.DataModels.FriendCircle.
FriendCircle friendcircle = new FriendCircle();
List<Invitee> inviteelist;
try
{
Object[] ob = new Object[2] { friendcircle, inviteelist };
await App.azure_rendezvous_mobile_service_3Client.InvokeApiAsync("saveinvite", new JObject(new JProperty("params", ob)));
}
catch (MobileServiceInvalidOperationException ex)
{
System.Diagnostics.Debug.WriteLine("Exception is :" + ex.Message);
}