scripts
This commit is contained in:
@@ -0,0 +1,59 @@
|
||||
using System;
|
||||
using System.Runtime.InteropServices;
|
||||
using System.Runtime.Serialization;
|
||||
|
||||
namespace System.Security.Cryptography
|
||||
{
|
||||
/// <summary>The exception that is thrown when an unexpected operation occurs during a cryptographic operation.</summary>
|
||||
// Token: 0x020004F2 RID: 1266
|
||||
[ComVisible(true)]
|
||||
[Serializable]
|
||||
public class CryptographicUnexpectedOperationException : CryptographicException
|
||||
{
|
||||
/// <summary>Initializes a new instance of the <see cref="T:System.Security.Cryptography.CryptographicUnexpectedOperationException" /> class with default properties.</summary>
|
||||
// Token: 0x06002ED3 RID: 11987 RVA: 0x00096A94 File Offset: 0x00094C94
|
||||
public CryptographicUnexpectedOperationException()
|
||||
: base(Locale.GetText("Unexpected error occured during a cryptographic operation."))
|
||||
{
|
||||
base.HResult = -2146233295;
|
||||
}
|
||||
|
||||
/// <summary>Initializes a new instance of the <see cref="T:System.Security.Cryptography.CryptographicUnexpectedOperationException" /> class with a specified error message.</summary>
|
||||
/// <param name="message">The error message that explains the reason for the exception. </param>
|
||||
// Token: 0x06002ED4 RID: 11988 RVA: 0x00096AB4 File Offset: 0x00094CB4
|
||||
public CryptographicUnexpectedOperationException(string message)
|
||||
: base(message)
|
||||
{
|
||||
base.HResult = -2146233295;
|
||||
}
|
||||
|
||||
/// <summary>Initializes a new instance of the <see cref="T:System.Security.Cryptography.CryptographicUnexpectedOperationException" /> class with a specified error message and a reference to the inner exception that is the cause of this exception.</summary>
|
||||
/// <param name="message">The error message that explains the reason for the exception. </param>
|
||||
/// <param name="inner">The exception that is the cause of the current exception. If the <paramref name="inner" /> parameter is not null, the current exception is raised in a catch block that handles the inner exception. </param>
|
||||
// Token: 0x06002ED5 RID: 11989 RVA: 0x00096AC8 File Offset: 0x00094CC8
|
||||
public CryptographicUnexpectedOperationException(string message, Exception inner)
|
||||
: base(message, inner)
|
||||
{
|
||||
base.HResult = -2146233295;
|
||||
}
|
||||
|
||||
/// <summary>Initializes a new instance of the <see cref="T:System.Security.Cryptography.CryptographicUnexpectedOperationException" /> class with a specified error message in the specified format.</summary>
|
||||
/// <param name="format">The format used to output the error message. </param>
|
||||
/// <param name="insert">The error message that explains the reason for the exception. </param>
|
||||
// Token: 0x06002ED6 RID: 11990 RVA: 0x00096AE0 File Offset: 0x00094CE0
|
||||
public CryptographicUnexpectedOperationException(string format, string insert)
|
||||
: base(string.Format(format, insert))
|
||||
{
|
||||
base.HResult = -2146233295;
|
||||
}
|
||||
|
||||
/// <summary>Initializes a new instance of the <see cref="T:System.Security.Cryptography.CryptographicUnexpectedOperationException" /> 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: 0x06002ED7 RID: 11991 RVA: 0x00096AFC File Offset: 0x00094CFC
|
||||
protected CryptographicUnexpectedOperationException(SerializationInfo info, StreamingContext context)
|
||||
: base(info, context)
|
||||
{
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user