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 -

How to put a lock and transaction on table using spring 4 or above using jdbcTemplate and annotations like @Transactional? -

How to understand 2 main() functions after using uftrace to profile the C++ program? -