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,21 @@
using System;
using System.Runtime.InteropServices;
namespace System.Security
{
/// <summary>Defines the methods that convert permission object state to and from XML element representation.</summary>
// Token: 0x020005C2 RID: 1474
[ComVisible(true)]
public interface ISecurityEncodable
{
/// <summary>Reconstructs a security object with a specified state from an XML encoding.</summary>
/// <param name="e">The XML encoding to use to reconstruct the security object. </param>
// Token: 0x060035C8 RID: 13768
void FromXml(SecurityElement e);
/// <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: 0x060035C9 RID: 13769
SecurityElement ToXml();
}
}