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
+16
View File
@@ -0,0 +1,16 @@
using System;
namespace System.ComponentModel
{
/// <summary>Specifies when the <see cref="T:System.ComponentModel.License" /> can be used.</summary>
// Token: 0x020000A3 RID: 163
public enum LicenseUsageMode
{
/// <summary>Used during design time by a visual designer or the compiler.</summary>
// Token: 0x04000188 RID: 392
Designtime = 1,
/// <summary>Used during runtime.</summary>
// Token: 0x04000189 RID: 393
Runtime = 0
}
}