| 1234567891011121314151617181920 |
- //
- // System.Security.ISecurityPolicyEncodable.cs
- //
- // Author:
- // Nick Drochak([email protected])
- //
- // (C) Nick Drochak
- //
- using System.Security.Policy;
- namespace System.Security {
- public interface ISecurityPolicyEncodable {
- void FromXml (SecurityElement e, PolicyLevel level);
- SecurityElement ToXml (PolicyLevel level);
- }
- }
|