Files
Jan2021-Cpp2Il-Dump/Assembly-CSharp/BestHTTP/SecureProtocol/Org/BouncyCastle/Crypto/Tls/TlsFatalAlertReceived.cs
T
2026-04-08 23:40:05 +02:00

42 lines
1.2 KiB
C#

using System;
using System.Runtime.InteropServices;
using Cpp2IlInjected;
namespace BestHTTP.SecureProtocol.Org.BouncyCastle.Crypto.Tls
{
// Token: 0x0200159F RID: 5535
[Token(Token = "0x200159F")]
[StructLayout(3)]
public class TlsFatalAlertReceived : TlsException
{
// Token: 0x0600933C RID: 37692 RVA: 0x00209DD8 File Offset: 0x00207FD8
[Token(Token = "0x600933C")]
[Address(RVA = "0x1DFD980", Offset = "0x1DFC380", VA = "0x181DFD980")]
public TlsFatalAlertReceived(byte alertDescription)
{
string text = BestHTTP.SecureProtocol.Org.BouncyCastle.Crypto.Tls.AlertDescription.GetText(alertDescription);
int num = 0;
base..ctor(text, num);
this.alertDescription = alertDescription;
}
// Token: 0x170017B4 RID: 6068
// (get) Token: 0x0600933D RID: 37693 RVA: 0x00209E00 File Offset: 0x00208000
[Token(Token = "0x170017B4")]
public virtual byte AlertDescription
{
[Token(Token = "0x600933D")]
[Address(RVA = "0x7D79F0", Offset = "0x7D63F0", VA = "0x1807D79F0", Slot = "12")]
get
{
return this.alertDescription;
}
}
// Token: 0x040061D9 RID: 25049
[global::Cpp2IlInjected.FieldOffset(Offset = "0x90")]
[Token(Token = "0x40061D9")]
private readonly byte alertDescription;
}
}