This commit is contained in:
niko
2026-04-10 22:50:51 +02:00
parent 6d1607d5a2
commit f18d448581
17033 changed files with 2863270 additions and 0 deletions
@@ -0,0 +1,26 @@
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
}
}