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,22 @@
using System;
using System.Security.Permissions;
namespace System.Reflection.Emit
{
// Token: 0x020001DD RID: 477
internal struct RefEmitPermissionSet
{
// Token: 0x06001899 RID: 6297 RVA: 0x0005E2A8 File Offset: 0x0005C4A8
public RefEmitPermissionSet(SecurityAction action, string pset)
{
this.action = action;
this.pset = pset;
}
// Token: 0x04000739 RID: 1849
public SecurityAction action;
// Token: 0x0400073A RID: 1850
public string pset;
}
}