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