This commit is contained in:
niko
2026-04-11 22:19:20 +02:00
parent 45b857ff11
commit 8fc35183db
17034 changed files with 2863552 additions and 0 deletions
@@ -0,0 +1,34 @@
using System;
using System.Runtime.Serialization;
using Cpp2IlInjected;
namespace System.Runtime.InteropServices
{
/// <summary>The exception thrown when an invalid COM object is used.</summary>
// Token: 0x02000581 RID: 1409
[Token(Token = "0x2000581")]
[ComVisible(true)]
[Serializable]
public class InvalidComObjectException : SystemException
{
/// <summary>Initializes an instance of the <see langword="InvalidComObjectException" /> with default properties.</summary>
// Token: 0x06002ABC RID: 10940 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x6002ABC")]
[Address(RVA = "0x237AEC0", Offset = "0x2379CC0", VA = "0x18237AEC0")]
public InvalidComObjectException()
{
}
/// <summary>Initializes a new instance of the <see langword="COMException" /> class from serialization 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>
/// <exception cref="T:System.ArgumentNullException">
/// <paramref name="info" /> is <see langword="null" />.</exception>
// Token: 0x06002ABD RID: 10941 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x6002ABD")]
[Address(RVA = "0x3F60E0", Offset = "0x3F4EE0", VA = "0x1803F60E0")]
protected InvalidComObjectException(SerializationInfo info, StreamingContext context)
{
}
}
}