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,19 @@
using System;
using System.Runtime.InteropServices;
using System.Security.Policy;
namespace System.Security
{
/// <summary>Gets an object's <see cref="T:System.Security.Policy.Evidence" />.</summary>
// Token: 0x020005C0 RID: 1472
[ComVisible(true)]
public interface IEvidenceFactory
{
/// <summary>Gets <see cref="T:System.Security.Policy.Evidence" /> that verifies the current object's identity.</summary>
/// <returns>
/// <see cref="T:System.Security.Policy.Evidence" /> of the current object's identity.</returns>
// Token: 0x17000A8A RID: 2698
// (get) Token: 0x060035C2 RID: 13762
Evidence Evidence { get; }
}
}