Welcome to mirror list, hosted at ThFree Co, Russian Federation.

IEvidenceFactory.cs « System.Security « corlib « class « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: ed9fc23e2e84fd17915f1e9469794ff99af12851 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
// System.Security.IEvidenceFactory
//
// Sean MacIsaac (macisaac@ximian.com)
//
// (C) Ximian, Inc. 2001

using System.Security.Policy;

namespace System.Security
{
	public interface IEvidenceFactory
	{
		Evidence Evidence { get; }
	}
}