Files
linux-packaging-mono/external/referencesource/System.Web.Extensions/HttpResponseInternalBase.cs
Xamarin Public Jenkins (auto-signing) fad71374d0 Imported Upstream version 5.2.0.179
Former-commit-id: a536d4f20e27294d8bbc2184d75f3a22364f7ba1
2017-06-16 11:04:32 +00:00

16 lines
566 B
C#

//------------------------------------------------------------------------------
// <copyright file="IHttpResponseInternal.cs" company="Microsoft">
// Copyright (c) Microsoft Corporation. All rights reserved.
// </copyright>
//------------------------------------------------------------------------------
namespace System.Web {
using System.IO;
internal abstract class HttpResponseInternalBase : HttpResponseBase {
public virtual TextWriter SwitchWriter(TextWriter writer) {
throw new NotImplementedException();
}
}
}