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
@@ -0,0 +1,32 @@
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
}
}