Beispiel #1
0
        public async Task <RootProfileObject> RequestProfileAsync(string username)
        {
            //Create Dialog
            //Create Parameter to POST request
            Dictionary <string, object> data = new Dictionary <string, object>();

            data.Add("username", username);

            RootProfileObject response = await myAPI.GetProfile(data);

            return(response);
        }