This commit is contained in:
niko
2026-06-04 11:42:34 +02:00
parent f39ba70a9f
commit e720b98cd1
7488 changed files with 2493818 additions and 0 deletions
@@ -0,0 +1,21 @@
using System;
using System.Runtime.InteropServices;
namespace System.ComponentModel
{
/// <summary>Specifies the visibility a property has to the design-time serializer.</summary>
// Token: 0x02000074 RID: 116
[ComVisible(true)]
public enum DesignerSerializationVisibility
{
/// <summary>The code generator does not produce code for the object.</summary>
// Token: 0x0400015E RID: 350
Hidden,
/// <summary>The code generator produces code for the object.</summary>
// Token: 0x0400015F RID: 351
Visible,
/// <summary>The code generator produces code for the contents of the object, rather than for the object itself.</summary>
// Token: 0x04000160 RID: 352
Content
}
}