Click here to Skip to main content
15,886,518 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
I'm trying to implement https://gist.github.com/jgable/881673 I have already posted my question there, could you please help me to get a result? The problem is that in

C#
private void Button_Click(object sender, RoutedEventArgs e)
{
    (new TestService()).StartService(
        resp =>
        {
            MessageBox.Show(resp.Data, "Response", MessageBoxButton.OK);
        },
        err =>
        {
            MessageBox.Show(err.Message, "Error", MessageBoxButton.OK);
        });
}


the resp.Data does not return the JSON response so I cannot get the response and continue with my login process.

Thanks in advance /magefi
Posted

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900