KeyInfoClause.cs 432 B

1234567891011121314151617181920212223
  1. //
  2. // KeyInfoClause.cs - Abstract KeyInfoClause implementation for XML Signature
  3. //
  4. // Author:
  5. // Sebastien Pouliot ([email protected])
  6. //
  7. // (C) 2002 Motus Technologies Inc. (http://www.motus.com)
  8. //
  9. using System.Xml;
  10. namespace System.Security.Cryptography.Xml {
  11. public abstract class KeyInfoClause {
  12. public KeyInfoClause () {}
  13. public abstract XmlElement GetXml ();
  14. public abstract void LoadXml (XmlElement element);
  15. }
  16. }