m
This commit is contained in:
@@ -0,0 +1,49 @@
|
||||
using System;
|
||||
using Cpp2IlInjected;
|
||||
|
||||
namespace BestHTTP.SecureProtocol.Org.BouncyCastle.Crypto.Tls
|
||||
{
|
||||
// Token: 0x02001C5B RID: 7259
|
||||
[Token(Token = "0x2001C5B")]
|
||||
public class TlsFatalAlert : TlsException
|
||||
{
|
||||
// Token: 0x0600B2E1 RID: 45793 RVA: 0x0026A5D0 File Offset: 0x002687D0
|
||||
[Token(Token = "0x600B2E1")]
|
||||
[Address(RVA = "0x4A96E0", Offset = "0x4A86E0", VA = "0x1804A96E0")]
|
||||
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: 0x0600B2E2 RID: 45794 RVA: 0x0026A5F8 File Offset: 0x002687F8
|
||||
[Token(Token = "0x600B2E2")]
|
||||
[Address(RVA = "0x4A9730", Offset = "0x4A8730", VA = "0x1804A9730")]
|
||||
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: 0x17001C51 RID: 7249
|
||||
// (get) Token: 0x0600B2E3 RID: 45795 RVA: 0x0026A61C File Offset: 0x0026881C
|
||||
[Token(Token = "0x17001C51")]
|
||||
public virtual byte AlertDescription
|
||||
{
|
||||
[Token(Token = "0x600B2E3")]
|
||||
[Address(RVA = "0x4A9720", Offset = "0x4A8720", VA = "0x1804A9720", Slot = "12")]
|
||||
get
|
||||
{
|
||||
return this.alertDescription;
|
||||
}
|
||||
}
|
||||
|
||||
// Token: 0x040071D4 RID: 29140
|
||||
[FieldOffset(Offset = "0x90")]
|
||||
[Token(Token = "0x40071D4")]
|
||||
private readonly byte alertDescription;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user