scripts
This commit is contained in:
@@ -0,0 +1,20 @@
|
||||
using System;
|
||||
using System.Runtime.InteropServices;
|
||||
|
||||
namespace System.Reflection
|
||||
{
|
||||
/// <summary>Specifies the attributes for a manifest resource.</summary>
|
||||
// Token: 0x0200026A RID: 618
|
||||
[ComVisible(true)]
|
||||
[Flags]
|
||||
[Serializable]
|
||||
public enum ResourceAttributes
|
||||
{
|
||||
/// <summary>A mask used to retrieve public manifest resources.</summary>
|
||||
// Token: 0x04000B19 RID: 2841
|
||||
Public = 1,
|
||||
/// <summary>A mask used to retrieve private manifest resources.</summary>
|
||||
// Token: 0x04000B1A RID: 2842
|
||||
Private = 2
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user