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,20 @@
using System;
using System.Runtime.InteropServices;
using Cpp2IlInjected;
namespace System.Security
{
/// <summary>Defines the methods that convert permission object state to and from XML element representation.</summary>
// Token: 0x020003C0 RID: 960
[Token(Token = "0x20003C0")]
[ComVisible(true)]
public interface ISecurityEncodable
{
/// <summary>Creates an XML encoding of the security object and its current state.</summary>
/// <returns>An XML encoding of the security object, including any state information.</returns>
// Token: 0x0600225B RID: 8795
[Token(Token = "0x600225B")]
[Address(Slot = "0")]
SecurityElement ToXml();
}
}