25 lines
675 B
C#
25 lines
675 B
C#
using System;
|
|
using Cpp2IlInjected;
|
|
|
|
namespace System.ComponentModel
|
|
{
|
|
/// <summary>Defines identifiers for types of inheritance levels.</summary>
|
|
// Token: 0x020001AC RID: 428
|
|
[Token(Token = "0x20001AC")]
|
|
public enum InheritanceLevel
|
|
{
|
|
/// <summary>The object is inherited.</summary>
|
|
// Token: 0x04000627 RID: 1575
|
|
[Token(Token = "0x4000627")]
|
|
Inherited = 1,
|
|
/// <summary>The object is inherited, but has read-only access.</summary>
|
|
// Token: 0x04000628 RID: 1576
|
|
[Token(Token = "0x4000628")]
|
|
InheritedReadOnly,
|
|
/// <summary>The object is not inherited.</summary>
|
|
// Token: 0x04000629 RID: 1577
|
|
[Token(Token = "0x4000629")]
|
|
NotInherited
|
|
}
|
|
}
|