a
This commit is contained in:
@@ -0,0 +1,49 @@
|
||||
using System;
|
||||
using Cpp2IlInjected;
|
||||
|
||||
namespace BestHTTP.SecureProtocol.Org.BouncyCastle.Crypto.Tls
|
||||
{
|
||||
// Token: 0x02001B7B RID: 7035
|
||||
[Token(Token = "0x2001B7B")]
|
||||
public class TlsFatalAlert : TlsException
|
||||
{
|
||||
// Token: 0x0600AF13 RID: 44819 RVA: 0x00261430 File Offset: 0x0025F630
|
||||
[Token(Token = "0x600AF13")]
|
||||
[Address(RVA = "0x198B090", Offset = "0x1989E90", VA = "0x18198B090")]
|
||||
public TlsFatalAlert(byte alertDescription)
|
||||
{
|
||||
string text = BestHTTP.SecureProtocol.Org.BouncyCastle.Crypto.Tls.AlertDescription.GetText(alertDescription);
|
||||
int num = 0;
|
||||
base..ctor(text, num);
|
||||
this.alertDescription = alertDescription;
|
||||
}
|
||||
|
||||
// Token: 0x0600AF14 RID: 44820 RVA: 0x00261458 File Offset: 0x0025F658
|
||||
[Token(Token = "0x600AF14")]
|
||||
[Address(RVA = "0x198B0D0", Offset = "0x1989ED0", VA = "0x18198B0D0")]
|
||||
public TlsFatalAlert(byte alertDescription, Exception alertCause)
|
||||
{
|
||||
string text = BestHTTP.SecureProtocol.Org.BouncyCastle.Crypto.Tls.AlertDescription.GetText(alertDescription);
|
||||
base..ctor(text, alertCause);
|
||||
this.alertDescription = alertDescription;
|
||||
}
|
||||
|
||||
// Token: 0x17001BB4 RID: 7092
|
||||
// (get) Token: 0x0600AF15 RID: 44821 RVA: 0x0026147C File Offset: 0x0025F67C
|
||||
[Token(Token = "0x17001BB4")]
|
||||
public virtual byte AlertDescription
|
||||
{
|
||||
[Token(Token = "0x600AF15")]
|
||||
[Address(RVA = "0x607800", Offset = "0x606600", VA = "0x180607800", Slot = "12")]
|
||||
get
|
||||
{
|
||||
return this.alertDescription;
|
||||
}
|
||||
}
|
||||
|
||||
// Token: 0x0400701B RID: 28699
|
||||
[FieldOffset(Offset = "0x90")]
|
||||
[Token(Token = "0x400701B")]
|
||||
private readonly byte alertDescription;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user