ISecurityPolicyEncodable.cs 339 B

1234567891011121314151617181920
  1. //
  2. // System.Security.ISecurityPolicyEncodable.cs
  3. //
  4. // Author:
  5. // Nick Drochak([email protected])
  6. //
  7. // (C) Nick Drochak
  8. //
  9. using System.Security.Policy;
  10. namespace System.Security {
  11. public interface ISecurityPolicyEncodable {
  12. void FromXml (SecurityElement e, PolicyLevel level);
  13. SecurityElement ToXml (PolicyLevel level);
  14. }
  15. }