using System;
using System.Runtime.InteropServices;
namespace System.Reflection
{
/// Specifies the attributes for a manifest resource.
// Token: 0x0200026A RID: 618
[ComVisible(true)]
[Flags]
[Serializable]
public enum ResourceAttributes
{
/// A mask used to retrieve public manifest resources.
// Token: 0x04000B19 RID: 2841
Public = 1,
/// A mask used to retrieve private manifest resources.
// Token: 0x04000B1A RID: 2842
Private = 2
}
}