Files
2026-04-08 23:40:05 +02:00

36 lines
1.2 KiB
C#

using System;
using System.Runtime.InteropServices;
using Cpp2IlInjected;
namespace BestHTTP.SecureProtocol.Org.BouncyCastle.Utilities.IO
{
// Token: 0x0200135F RID: 4959
[Token(Token = "0x200135F")]
[StructLayout(3)]
internal class NullOutputStream : BaseOutputStream
{
// Token: 0x06007D8E RID: 32142 RVA: 0x0000220F File Offset: 0x0000040F
[Token(Token = "0x6007D8E")]
[Address(RVA = "0x3C9F60", Offset = "0x3C8960", VA = "0x1803C9F60", Slot = "30")]
public override void WriteByte(byte b)
{
throw new AnalysisFailedException("CPP2IL failed to recover any usable IL for this method.");
}
// Token: 0x06007D8F RID: 32143 RVA: 0x0000220F File Offset: 0x0000040F
[Token(Token = "0x6007D8F")]
[Address(RVA = "0x3C9F60", Offset = "0x3C8960", VA = "0x1803C9F60", Slot = "29")]
public override void Write(byte[] buffer, int offset, int count)
{
throw new AnalysisFailedException("CPP2IL failed to recover any usable IL for this method.");
}
// Token: 0x06007D90 RID: 32144 RVA: 0x001A5D1C File Offset: 0x001A3F1C
[Token(Token = "0x6007D90")]
[Address(RVA = "0x2025370", Offset = "0x2023D70", VA = "0x182025370")]
public NullOutputStream()
{
}
}
}