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

Evidence.cs « System.Security.Policy « corlib « class « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 701d1d4344d1a751e30bb1380abc14b408b90dfa (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
// System.Security.Policy.Evidence
//
// Authors:
//  Sean MacIsaac (macisaac@ximian.com)
//  Nick Drochak (ndrochak@gol.com)
//
// (C) 2001 Ximian, Inc.

using System.Collections;

namespace System.Security.Policy
{
	[MonoTODO]
	[Serializable]
	public sealed class Evidence
	{
		
		[MonoTODO]
		public Evidence () {
		}

		[MonoTODO]
		public IEnumerator GetHostEnumerator() {
			throw new NotImplementedException();
		}
	}
}