40 lines
1.8 KiB
C#
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: 0x0200022C RID: 556
|
|
[Token(Token = "0x200022C")]
|
|
[ComVisible(true)]
|
|
[Serializable]
|
|
public sealed class Missing : ISerializable
|
|
{
|
|
// Token: 0x06001427 RID: 5159 RVA: 0x00002050 File Offset: 0x00000250
|
|
[Token(Token = "0x6001427")]
|
|
[Address(RVA = "0x402080", Offset = "0x400E80", VA = "0x180402080")]
|
|
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: 0x06001428 RID: 5160 RVA: 0x00002050 File Offset: 0x00000250
|
|
[Token(Token = "0x6001428")]
|
|
[Address(RVA = "0x2A0B0C0", Offset = "0x2A09EC0", VA = "0x182A0B0C0", 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: 0x04000AC1 RID: 2753
|
|
[Token(Token = "0x4000AC1")]
|
|
public static readonly Missing Value;
|
|
}
|
|
}
|