android - how to parse bytearraybody from MultipartEntity which is added to HttpPut request in C# -


i sending public key android server in of bytearrybody added multipartentity , attached http put request. not aware of server side code written c#. struggling bytearrybody put request's multipartentity. please me if knows.

i sending public key below @ client side.

        string csrfiledata = utils.getstringpref(context, constants.storecsr);         multipartentity multipartcontent = new multipartentity();         bytearraybody key = new bytearraybody(csrfiledata.getbytes(),                 "usercsr");         multipartcontent.addpart("usercsr", key);         httpput.setentity(multipartcontent); 


Comments

Popular posts from this blog

'hasOwnProperty' in javascript -

python - ValueError: No axis named 1 for object type <class 'pandas.core.series.Series'> -

java - How to provide dependency injections in Eclipse RCP 3.x? -