This commit is contained in:
niko
2026-04-12 16:51:38 +02:00
parent 1b6f6d81d0
commit c12fbe3fc6
17828 changed files with 2994770 additions and 0 deletions
@@ -0,0 +1,54 @@
using System;
using System.Runtime.Serialization;
using Cpp2IlInjected;
namespace System.Runtime.InteropServices
{
/// <summary>The exception that is thrown when an unrecognized HRESULT is returned from a COM method call.</summary>
// Token: 0x0200059B RID: 1435
[Token(Token = "0x200059B")]
[ComVisible(true)]
[Serializable]
public class COMException : ExternalException
{
/// <summary>Initializes a new instance of the <see cref="T:System.Runtime.InteropServices.COMException" /> class with default values.</summary>
// Token: 0x06002CBE RID: 11454 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x6002CBE")]
[Address(RVA = "0x2CE9310", Offset = "0x2CE8310", VA = "0x182CE9310")]
public COMException()
{
}
/// <summary>Initializes a new instance of the <see cref="T:System.Runtime.InteropServices.COMException" /> class with a specified message and error code.</summary>
/// <param name="message">The message that indicates the reason the exception occurred.</param>
/// <param name="errorCode">The error code (HRESULT) value associated with this exception.</param>
// Token: 0x06002CBF RID: 11455 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x6002CBF")]
[Address(RVA = "0x2CE9380", Offset = "0x2CE8380", VA = "0x182CE9380")]
public COMException(string message, int errorCode)
{
}
/// <summary>Initializes a new instance of the <see cref="T:System.Runtime.InteropServices.COMException" /> class from serialization data.</summary>
/// <param name="info">The <see cref="T:System.Runtime.Serialization.SerializationInfo" /> object that holds the serialized object data.</param>
/// <param name="context">The <see cref="T:System.Runtime.Serialization.StreamingContext" /> object that supplies the contextual information about the source or destination.</param>
/// <exception cref="T:System.ArgumentNullException">
/// <paramref name="info" /> is <see langword="null" />.</exception>
// Token: 0x06002CC0 RID: 11456 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x6002CC0")]
[Address(RVA = "0x7241B0", Offset = "0x7231B0", VA = "0x1807241B0")]
protected COMException(SerializationInfo info, StreamingContext context)
{
}
/// <summary>Converts the contents of the exception to a string.</summary>
/// <returns>A string containing the <see cref="P:System.Exception.HResult" />, <see cref="P:System.Exception.Message" />, <see cref="P:System.Exception.InnerException" />, and <see cref="P:System.Exception.StackTrace" /> properties of the exception.</returns>
// Token: 0x06002CC1 RID: 11457 RVA: 0x00002082 File Offset: 0x00000282
[Token(Token = "0x6002CC1")]
[Address(RVA = "0x2CE9170", Offset = "0x2CE8170", VA = "0x182CE9170", Slot = "3")]
public override string ToString()
{
return null;
}
}
}