1 // Licensed to the .NET Foundation under one or more agreements.
2 // The .NET Foundation licenses this file to you under the MIT license.
3 // See the LICENSE file in the project root for more information.
4 
5 using System;
6 using System.Collections;
7 using System.IO;
8 using System.Runtime.InteropServices;
9 using System.Security;
10 using System.Text;
11 using System.Xml;
12 using System.Xml.XPath;
13 using System.Xml.Xsl;
14 
15 namespace System.Security.Cryptography.Xml
16 {
17     // <ds:Transform Algorithm="http://www.w3.org/2001/10/xml-exc-c14n#">
18     //     <ec:InclusiveNamespaces PrefixList="dsig soap #default" xmlns:ec="http://www.w3.org/2001/10/xml-exc-c14n#"/>
19     // </ds:Transform>
20 
21     public class XmlDsigExcC14NWithCommentsTransform : XmlDsigExcC14NTransform
22     {
XmlDsigExcC14NWithCommentsTransform()23         public XmlDsigExcC14NWithCommentsTransform() : base(true)
24         {
25             Algorithm = SignedXml.XmlDsigExcC14NWithCommentsTransformUrl;
26         }
27 
XmlDsigExcC14NWithCommentsTransform(string inclusiveNamespacesPrefixList)28         public XmlDsigExcC14NWithCommentsTransform(string inclusiveNamespacesPrefixList) : base(true, inclusiveNamespacesPrefixList)
29         {
30             Algorithm = SignedXml.XmlDsigExcC14NWithCommentsTransformUrl;
31         }
32     }
33 }
34