* ReaderWriterLock.cs: Changed some methods to private.
[mono.git] / mcs / class / corlib / System.Security / ISecurityPolicyEncodable.cs
1 //
2 // System.Security.ISecurityPolicyEncodable.cs
3 //
4 // Author:
5 //   Nick Drochak(ndrochak@gol.com)
6 //
7 // (C) Nick Drochak
8 //
9
10 using System.Security.Policy;
11
12 namespace System.Security {
13
14         public interface ISecurityPolicyEncodable {
15
16                 void FromXml (SecurityElement e, PolicyLevel level);
17
18                 SecurityElement ToXml (PolicyLevel level);
19         }
20 }