This commit is contained in:
niko
2026-04-12 16:51:38 +02:00
parent 1b6f6d81d0
commit c12fbe3fc6
17828 changed files with 2994770 additions and 0 deletions
@@ -0,0 +1,12 @@
using System;
using Cpp2IlInjected;
namespace System.Security.AccessControl
{
/// <summary>Controls access to objects without direct manipulation of access control lists (ACLs). This class is the abstract base class for the <see cref="T:System.Security.AccessControl.NativeObjectSecurity" /> class.</summary>
// Token: 0x020003D5 RID: 981
[Token(Token = "0x20003D5")]
public abstract class CommonObjectSecurity : ObjectSecurity
{
}
}
@@ -0,0 +1,12 @@
using System;
using Cpp2IlInjected;
namespace System.Security.AccessControl
{
/// <summary>Provides the ability to control access to a cryptographic key object without direct manipulation of an Access Control List (ACL).</summary>
// Token: 0x020003D6 RID: 982
[Token(Token = "0x20003D6")]
public sealed class CryptoKeySecurity : NativeObjectSecurity
{
}
}
@@ -0,0 +1,12 @@
using System;
using Cpp2IlInjected;
namespace System.Security.AccessControl
{
/// <summary>Provides the ability to control access to native objects without direct manipulation of Access Control Lists (ACLs). Native object types are defined by the <see cref="T:System.Security.AccessControl.ResourceType" /> enumeration.</summary>
// Token: 0x020003D7 RID: 983
[Token(Token = "0x20003D7")]
public abstract class NativeObjectSecurity : CommonObjectSecurity
{
}
}
@@ -0,0 +1,12 @@
using System;
using Cpp2IlInjected;
namespace System.Security.AccessControl
{
/// <summary>Provides the ability to control access to objects without direct manipulation of Access Control Lists (ACLs). This class is the abstract base class for the <see cref="T:System.Security.AccessControl.CommonObjectSecurity" /> and <see cref="T:System.Security.AccessControl.DirectoryObjectSecurity" /> classes.</summary>
// Token: 0x020003D8 RID: 984
[Token(Token = "0x20003D8")]
public abstract class ObjectSecurity
{
}
}