22 lines
697 B
C#
22 lines
697 B
C#
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
|
|
}
|
|
}
|