HttpRequest.InputStream Property
.NET Framework 3.5
Gets the contents of the incoming HTTP entity body.
Assembly: System.Web (in System.Web.dll)
The following code example copies the contents of an InputStream into a string.
System.IO.Stream str; String strmContents; Int32 counter, strLen, strRead; // Create a Stream object. str = Request.InputStream; // Find number of bytes in stream. strLen = Convert.ToInt32(str.Length); // Create a byte array. byte[] strArr = new byte[strLen]; // Read stream into byte array. strRead = str.Read(strArr, 0, strLen); // Convert byte array to a text string. strmContents = ""; for (counter = 0; counter < strLen; counter++) { strmContents = strmContents + strArr[counter].ToString(); }
Windows 7, Windows Vista, Windows XP SP2, Windows XP Media Center Edition, Windows XP Professional x64 Edition, Windows XP Starter Edition, Windows Server 2008 R2, Windows Server 2008, Windows Server 2003, Windows Server 2000 SP4, Windows Millennium Edition, Windows 98
The .NET Framework and .NET Compact Framework do not support all versions of every platform. For a list of the supported versions, see .NET Framework System Requirements.