**** Merged from MCS ****
[mono-project.git] / mcs / class / corlib / System.IO / UnexceptionalStreamWriter.cs
blobdb9fd5842e7e2094dbf8d648518e06501b1b9db8
1 //
2 // System.IO.StreamWriter.cs
3 //
4 // Authors:
5 // Dietmar Maurer (dietmar@ximian.com)
6 // Paolo Molaro (lupus@ximian.com)
7 // Dick Porter (dick@ximian.com)
8 //
9 // (C) Ximian, Inc. http://www.ximian.com
13 // Copyright (C) 2004 Novell, Inc (http://www.novell.com)
15 // Permission is hereby granted, free of charge, to any person obtaining
16 // a copy of this software and associated documentation files (the
17 // "Software"), to deal in the Software without restriction, including
18 // without limitation the rights to use, copy, modify, merge, publish,
19 // distribute, sublicense, and/or sell copies of the Software, and to
20 // permit persons to whom the Software is furnished to do so, subject to
21 // the following conditions:
22 //
23 // The above copyright notice and this permission notice shall be
24 // included in all copies or substantial portions of the Software.
25 //
26 // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
27 // EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
28 // MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
29 // NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
30 // LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
31 // OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
32 // WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
36 // This is a wrapper around StreamWriter used by System.Console that
37 // catches IOException so that graphical applications don't suddenly
38 // get IO errors when their terminal vanishes (ie when they spew debug
39 // output.) See UnexceptionalStreamReader too.
41 using System.Text;
42 using System;
44 namespace System.IO {
45 internal class UnexceptionalStreamWriter: StreamWriter {
46 public UnexceptionalStreamWriter (Stream stream)
47 : base (stream)
51 public UnexceptionalStreamWriter (Stream stream,
52 Encoding encoding)
53 : base (stream, encoding)
57 public UnexceptionalStreamWriter (Stream stream,
58 Encoding encoding,
59 int bufferSize)
60 : base (stream, encoding, bufferSize)
64 public UnexceptionalStreamWriter (string path)
65 : base (path)
69 public UnexceptionalStreamWriter (string path, bool append)
70 : base (path, append)
74 public UnexceptionalStreamWriter (string path, bool append,
75 Encoding encoding)
76 : base (path, append, encoding)
80 public UnexceptionalStreamWriter (string path, bool append,
81 Encoding encoding,
82 int bufferSize)
83 : base (path, append, encoding, bufferSize)
87 public override void Flush ()
89 try {
90 base.Flush ();
91 } catch (IOException) {
95 public override void Write (char[] buffer, int index,
96 int count)
98 try {
99 base.Write (buffer, index, count);
100 } catch (IOException) {
104 public override void Write (char value)
106 try {
107 base.Write (value);
108 } catch (IOException) {
112 public override void Write (char[] value)
114 try {
115 base.Write (value);
116 } catch (IOException) {
120 public override void Write (string value)
122 try {
123 base.Write (value);
124 } catch (IOException) {