Files
27Aug2021-Cpp2IL-Dump/mscorlib/System/Security/ISecurityEncodable.cs
T
niko c12fbe3fc6 m
2026-04-12 16:51:38 +02:00

21 lines
661 B
C#

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();
}
}