| 123456789101112131415161718 |
- //
- // System.Security.ISecurityEncodable.cs
- //
- // Author:
- // Miguel de Icaza ([email protected])
- //
- // (C) Ximian, Inc. http://www.ximian.com
- //
- namespace System.Security {
- public interface ISecurityEncodable {
- void FromXml (SecurityElement e);
- SecurityElement ToXml ();
- }
- }
|