This commit is contained in:
niko
2026-04-10 22:50:51 +02:00
parent 6d1607d5a2
commit f18d448581
17033 changed files with 2863270 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: 0x020003A4 RID: 932
[Token(Token = "0x20003A4")]
[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: 0x0600204F RID: 8271
[Token(Token = "0x600204F")]
[Address(Slot = "0")]
SecurityElement ToXml();
}
}