using System;
namespace System.Runtime.Versioning
{
/// Identifies the scope of a sharable resource.
// Token: 0x0200049C RID: 1180
[Flags]
public enum ResourceScope
{
/// There is no shared state.
// Token: 0x0400114C RID: 4428
None = 0,
/// The state is shared by objects within the machine.
// Token: 0x0400114D RID: 4429
Machine = 1,
/// The state is shared within a process.
// Token: 0x0400114E RID: 4430
Process = 2,
/// The state is shared by objects within an .
// Token: 0x0400114F RID: 4431
AppDomain = 4,
/// The state is shared by objects within a library.
// Token: 0x04001150 RID: 4432
Library = 8,
/// The resource is visible to only the type.
// Token: 0x04001151 RID: 4433
Private = 16,
/// The resource is visible at an assembly scope.
// Token: 0x04001152 RID: 4434
Assembly = 32
}
}