Files
27Aug2021-Cpp2IL-Dump/mscorlib/System/Reflection/Missing.cs
T
niko c12fbe3fc6 m
2026-04-12 16:51:38 +02:00

40 lines
1.8 KiB
C#

using System;
using System.Runtime.InteropServices;
using System.Runtime.Serialization;
using Cpp2IlInjected;
namespace System.Reflection
{
/// <summary>Represents a missing <see cref="T:System.Object" />. This class cannot be inherited.</summary>
// Token: 0x02000233 RID: 563
[Token(Token = "0x2000233")]
[ComVisible(true)]
[Serializable]
public sealed class Missing : ISerializable
{
// Token: 0x06001465 RID: 5221 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x6001465")]
[Address(RVA = "0x412370", Offset = "0x411370", VA = "0x180412370")]
private Missing()
{
}
/// <summary>Sets a <see cref="T:System.Runtime.Serialization.SerializationInfo" /> object with the logical context information needed to recreate the sole instance of the <see cref="T:System.Reflection.Missing" /> object.</summary>
/// <param name="info">The <see cref="T:System.Runtime.Serialization.SerializationInfo" /> object to be populated with serialization information.</param>
/// <param name="context">The <see cref="T:System.Runtime.Serialization.StreamingContext" /> object representing the destination context of the serialization.</param>
/// <exception cref="T:System.ArgumentNullException">
/// <paramref name="info" /> is <see langword="null" />.</exception>
// Token: 0x06001466 RID: 5222 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x6001466")]
[Address(RVA = "0x30BCD40", Offset = "0x30BBD40", VA = "0x1830BCD40", Slot = "4")]
void ISerializable.GetObjectData(SerializationInfo info, StreamingContext context)
{
}
/// <summary>Represents the sole instance of the <see cref="T:System.Reflection.Missing" /> class.</summary>
// Token: 0x04000ACB RID: 2763
[Token(Token = "0x4000ACB")]
public static readonly Missing Value;
}
}