20 lines
643 B
C#
20 lines
643 B
C#
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; }
|
|
}
|
|
}
|