// Copyright (c) .NET Foundation. All rights reserved. // Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.IO; using System.Text; namespace Microsoft.AspNet.Mvc.Internal { /// /// Creates instances for reading from . /// public interface IHttpRequestStreamReaderFactory { /// /// Creates a new . /// /// The , usually . /// The , usually . /// A . TextReader CreateReader(Stream stream, Encoding encoding); } }