Files
niko c12fbe3fc6 m
2026-04-12 16:51:38 +02:00

35 lines
1.4 KiB
C#

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: 0x020005A0 RID: 1440
[Token(Token = "0x20005A0")]
[ComVisible(true)]
[Serializable]
public class InvalidComObjectException : SystemException
{
/// <summary>Initializes an instance of the <see langword="InvalidComObjectException" /> with default properties.</summary>
// Token: 0x06002CD0 RID: 11472 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x6002CD0")]
[Address(RVA = "0x2CEEAE0", Offset = "0x2CEDAE0", VA = "0x182CEEAE0")]
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: 0x06002CD1 RID: 11473 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x6002CD1")]
[Address(RVA = "0x7241B0", Offset = "0x7231B0", VA = "0x1807241B0")]
protected InvalidComObjectException(SerializationInfo info, StreamingContext context)
{
}
}
}