34 lines
1.4 KiB
C#
34 lines
1.4 KiB
C#
using System;
|
|
using System.Runtime.InteropServices;
|
|
using System.Runtime.Serialization;
|
|
using Cpp2IlInjected;
|
|
|
|
namespace System.Security
|
|
{
|
|
/// <summary>The exception that is thrown when the security policy requires code to be type safe and the verification process is unable to verify that the code is type safe.</summary>
|
|
// Token: 0x020003AC RID: 940
|
|
[Token(Token = "0x20003AC")]
|
|
[ComVisible(true)]
|
|
[Serializable]
|
|
public class VerificationException : SystemException
|
|
{
|
|
/// <summary>Initializes a new instance of the <see cref="T:System.Security.VerificationException" /> class with default properties.</summary>
|
|
// Token: 0x0600208A RID: 8330 RVA: 0x00002050 File Offset: 0x00000250
|
|
[Token(Token = "0x600208A")]
|
|
[Address(RVA = "0x2228EB0", Offset = "0x2227CB0", VA = "0x182228EB0")]
|
|
public VerificationException()
|
|
{
|
|
}
|
|
|
|
/// <summary>Initializes a new instance of the <see cref="T:System.Security.VerificationException" /> class with serialized data.</summary>
|
|
/// <param name="info">The object that holds the serialized object data.</param>
|
|
/// <param name="context">The contextual information about the source or destination.</param>
|
|
// Token: 0x0600208B RID: 8331 RVA: 0x00002050 File Offset: 0x00000250
|
|
[Token(Token = "0x600208B")]
|
|
[Address(RVA = "0x2C450C0", Offset = "0x2C43EC0", VA = "0x182C450C0")]
|
|
protected VerificationException(SerializationInfo info, StreamingContext context)
|
|
{
|
|
}
|
|
}
|
|
}
|