ISecurityEncodable.cs 287 B

123456789101112131415161718
  1. //
  2. // System.Security.ISecurityEncodable.cs
  3. //
  4. // Author:
  5. // Miguel de Icaza ([email protected])
  6. //
  7. // (C) Ximian, Inc. http://www.ximian.com
  8. //
  9. namespace System.Security {
  10. public interface ISecurityEncodable {
  11. void FromXml (SecurityElement e);
  12. SecurityElement ToXml ();
  13. }
  14. }