Files
2026-06-04 11:42:34 +02:00

112 lines
2.4 KiB
C#

using System;
using System.Text;
namespace System.IO
{
// Token: 0x020001DA RID: 474
internal class UnexceptionalStreamWriter : StreamWriter
{
// Token: 0x06001876 RID: 6262 RVA: 0x0005D9C0 File Offset: 0x0005BBC0
public UnexceptionalStreamWriter(Stream stream)
: base(stream)
{
}
// Token: 0x06001877 RID: 6263 RVA: 0x0005D9CC File Offset: 0x0005BBCC
public UnexceptionalStreamWriter(Stream stream, Encoding encoding)
: base(stream, encoding)
{
}
// Token: 0x06001878 RID: 6264 RVA: 0x0005D9D8 File Offset: 0x0005BBD8
public UnexceptionalStreamWriter(Stream stream, Encoding encoding, int bufferSize)
: base(stream, encoding, bufferSize)
{
}
// Token: 0x06001879 RID: 6265 RVA: 0x0005D9E4 File Offset: 0x0005BBE4
public UnexceptionalStreamWriter(string path)
: base(path)
{
}
// Token: 0x0600187A RID: 6266 RVA: 0x0005D9F0 File Offset: 0x0005BBF0
public UnexceptionalStreamWriter(string path, bool append)
: base(path, append)
{
}
// Token: 0x0600187B RID: 6267 RVA: 0x0005D9FC File Offset: 0x0005BBFC
public UnexceptionalStreamWriter(string path, bool append, Encoding encoding)
: base(path, append, encoding)
{
}
// Token: 0x0600187C RID: 6268 RVA: 0x0005DA08 File Offset: 0x0005BC08
public UnexceptionalStreamWriter(string path, bool append, Encoding encoding, int bufferSize)
: base(path, append, encoding, bufferSize)
{
}
// Token: 0x0600187D RID: 6269 RVA: 0x0005DA18 File Offset: 0x0005BC18
public override void Flush()
{
try
{
base.Flush();
}
catch (Exception)
{
}
}
// Token: 0x0600187E RID: 6270 RVA: 0x0005DA54 File Offset: 0x0005BC54
public override void Write(char[] buffer, int index, int count)
{
try
{
base.Write(buffer, index, count);
}
catch (Exception)
{
}
}
// Token: 0x0600187F RID: 6271 RVA: 0x0005DA94 File Offset: 0x0005BC94
public override void Write(char value)
{
try
{
base.Write(value);
}
catch (Exception)
{
}
}
// Token: 0x06001880 RID: 6272 RVA: 0x0005DAD0 File Offset: 0x0005BCD0
public override void Write(char[] value)
{
try
{
base.Write(value);
}
catch (Exception)
{
}
}
// Token: 0x06001881 RID: 6273 RVA: 0x0005DB0C File Offset: 0x0005BD0C
public override void Write(string value)
{
try
{
base.Write(value);
}
catch (Exception)
{
}
}
}
}