Accessing the exact data sent using WebClient.UploadData on the server
问题 Newbie question: I'm sending a large text string in the form of a byte array using the WebClient.UploadData method to a web site but I'm not sure exactly where to retrieve that data from on the server. I've read posts that say it is in the request object which I already know but how exactly do I retrieve the specific byte array I sent like in the following c# pseudo code: byte[] dataSent = request.GettheByteArrayISentFromWebClientUploadDataMethod; I understand that it may not be as simple as