16 lines
391 B
C#
16 lines
391 B
C#
|
// Copyright (c) Microsoft Corporation. All rights reserved. See License.txt in the project root for license information.
|
|||
|
|
|||
|
using System.IO;
|
|||
|
using System.Net.Http.Internal;
|
|||
|
|
|||
|
namespace System.Net.Http.Mocks
|
|||
|
{
|
|||
|
internal class MockDelegatingStream : DelegatingStream
|
|||
|
{
|
|||
|
public MockDelegatingStream(Stream innerStream)
|
|||
|
: base(innerStream)
|
|||
|
{
|
|||
|
}
|
|||
|
}
|
|||
|
}
|