19 lines
583 B
C#
19 lines
583 B
C#
// 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;
|
|
using Microsoft.AspNetCore.Mvc.Internal;
|
|
using Microsoft.AspNetCore.WebUtilities;
|
|
|
|
namespace Microsoft.AspNetCore.Mvc
|
|
{
|
|
public class TestHttpRequestStreamReaderFactory : IHttpRequestStreamReaderFactory
|
|
{
|
|
public TextReader CreateReader(Stream stream, Encoding encoding)
|
|
{
|
|
return new HttpRequestStreamReader(stream, encoding);
|
|
}
|
|
}
|
|
}
|