27 lines
845 B
C#
27 lines
845 B
C#
using System;
|
|
using System.Runtime.InteropServices;
|
|
using Cpp2IlInjected;
|
|
|
|
namespace System.ComponentModel
|
|
{
|
|
/// <summary>Specifies the visibility a property has to the design-time serializer.</summary>
|
|
// Token: 0x0200011A RID: 282
|
|
[Token(Token = "0x200011A")]
|
|
[ComVisible(true)]
|
|
public enum DesignerSerializationVisibility
|
|
{
|
|
/// <summary>The code generator does not produce code for the object.</summary>
|
|
// Token: 0x040004CA RID: 1226
|
|
[Token(Token = "0x40004CA")]
|
|
Hidden,
|
|
/// <summary>The code generator produces code for the object.</summary>
|
|
// Token: 0x040004CB RID: 1227
|
|
[Token(Token = "0x40004CB")]
|
|
Visible,
|
|
/// <summary>The code generator produces code for the contents of the object, rather than for the object itself.</summary>
|
|
// Token: 0x040004CC RID: 1228
|
|
[Token(Token = "0x40004CC")]
|
|
Content
|
|
}
|
|
}
|