//------------------------------------------------------------------------------ // // Copyright (c) Microsoft Corporation. All rights reserved. // //------------------------------------------------------------------------------ namespace System.Web { using System.IO; internal abstract class HttpResponseInternalBase : HttpResponseBase { public virtual TextWriter SwitchWriter(TextWriter writer) { throw new NotImplementedException(); } } }