XmlDsigC14NWithCommentsTransform.cs 452 B

123456789101112131415161718192021
  1. //
  2. // XmlDsigC14NWithCommentsTransform.cs -
  3. // C14N with comments Transform implementation for XML Signature
  4. //
  5. // Author:
  6. // Sebastien Pouliot ([email protected])
  7. //
  8. // (C) 2002 Motus Technologies Inc. (http://www.motus.com)
  9. //
  10. using System.IO;
  11. using System.Xml;
  12. namespace System.Security.Cryptography.Xml {
  13. public class XmlDsigC14NWithCommentsTransform : XmlDsigC14NTransform {
  14. public XmlDsigC14NWithCommentsTransform() : base (true) {}
  15. }
  16. }