b9f93ec432dbfb4ff9f4d399a70d322e7f16f562
[platform/upstream/dotnet/runtime.git] /
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 Microsoft.Win32;
6 using System.Collections;
7 using System.Diagnostics;
8 using System.Globalization;
9 using System.IO;
10 using System.Security.Cryptography.X509Certificates;
11 using System.Security.Permissions;
12 using System.Text;
13 using System.Threading;
14 using System.Xml;
15
16 namespace System.Security.Cryptography.Xml
17 {
18     internal class MyXmlDocument : XmlDocument
19     {
20         protected override XmlAttribute CreateDefaultAttribute(string prefix, string localName, string namespaceURI)
21         {
22             return CreateAttribute(prefix, localName, namespaceURI);
23         }
24     }
25 }