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

ISecurityPolicyEncodable.cs « System.Security « corlib « class « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 66418ab91d052c9271218fc3ac8e33697ff2dbca (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
//
// System.Security.ISecurityPolicyEncodable.cs
//
// Author:
//   Nick Drochak(ndrochak@gol.com)
//
// (C) Nick Drochak
//

using System.Security.Policy;

namespace System.Security {

	public interface ISecurityPolicyEncodable {

		void FromXml (SecurityElement e, PolicyLevel level);

		SecurityElement ToXml (PolicyLevel level);
	}
}