#region Apache License // // Licensed to the Apache Software Foundation (ASF) under one or more // contributor license agreements. See the NOTICE file distributed with // this work for additional information regarding copyright ownership. // The ASF licenses this file to you under the Apache License, Version 2.0 // (the "License"); you may not use this file except in compliance with // the License. You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. // #endregion using System; using System.IO; using System.Text; using log4net.Core; namespace log4net.Util { /// /// A that ignores the message /// /// /// /// This writer is used in special cases where it is necessary /// to protect a writer from being closed by a client. /// /// /// Nicko Cadell public class ProtectCloseTextWriter : TextWriterAdapter { #region Public Instance Constructors /// /// Constructor /// /// the writer to actually write to /// /// /// Create a new ProtectCloseTextWriter using a writer /// /// public ProtectCloseTextWriter(TextWriter writer) : base(writer) { } #endregion Public Instance Constructors #region Public Properties /// /// Attach this instance to a different underlying /// /// the writer to attach to /// /// /// Attach this instance to a different underlying /// /// public void Attach(TextWriter writer) { this.Writer = writer; } #endregion #region Override Implementation of TextWriter /// /// Does not close the underlying output writer. /// /// /// /// Does not close the underlying output writer. /// This method does nothing. /// /// override public void Close() { // do nothing } #endregion Public Instance Methods } }