ASCIIEncoding encoding = new ASCIIEncoding(); byte[] requestData = encoding.GetBytes(dataToInstruct); MemoryStream memoryStream = new MemoryStream(requestData); Stream stream = (Stream) memoryStream;
Login to post response