1 type derived from HttpInputStream
System.Web (1)
HttpInputStream.cs (1)
422internal class HttpInputStreamFilterSource : HttpInputStream {
3 instantiations of HttpInputStream
System.Web (3)
HttpRequest.cs (2)
2440_inputStream = new HttpInputStream( 2447_inputStream = new HttpInputStream(null, 0, 0);
MultipartContentParser.cs (1)
56new HttpInputStream(_data, _offset, _length));
6 references to HttpInputStream
System.Web (6)
HttpPostedFile.cs (2)
31private HttpInputStream _stream; 33internal HttpPostedFile(String filename, String contentType, HttpInputStream stream) {
HttpRequest.cs (3)
95private HttpInputStream _inputStream; 2940HttpInputStream s = (HttpInputStream)this.InputStream;
OutputCacheModule.cs (1)
274buf = ((HttpInputStream)request.InputStream).GetAsByteArray();