Files
2026-06-04 11:42:34 +02:00

34 lines
1.5 KiB
C#

using System;
using System.Runtime.InteropServices;
using System.Runtime.Serialization;
namespace System.Reflection
{
/// <summary>Represents a missing <see cref="T:System.Object" />. This class cannot be inherited.</summary>
// Token: 0x02000250 RID: 592
[ComVisible(true)]
[Serializable]
public sealed class Missing : ISerializable
{
// Token: 0x06001E90 RID: 7824 RVA: 0x000711D8 File Offset: 0x0006F3D8
internal 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 null.</exception>
// Token: 0x06001E92 RID: 7826 RVA: 0x000711EC File Offset: 0x0006F3EC
[MonoTODO]
void ISerializable.GetObjectData(SerializationInfo info, StreamingContext context)
{
}
/// <summary>Represents the sole instance of the <see cref="T:System.Reflection.Missing" /> class.</summary>
// Token: 0x04000AA3 RID: 2723
public static readonly Missing Value = new Missing();
}
}