XmlDataImplementation.cs 863 B

123456789101112131415161718192021
  1. //------------------------------------------------------------------------------
  2. // <copyright file="XmlDataImplementation.cs" company="Microsoft">
  3. // Copyright (c) Microsoft Corporation. All rights reserved.
  4. // </copyright>
  5. // <owner current="true" primary="true">Microsoft</owner>
  6. // <owner current="true" primary="false">Microsoft</owner>
  7. //------------------------------------------------------------------------------
  8. #pragma warning disable 618 // ignore obsolete warning about XmlDataDocument
  9. namespace System.Xml {
  10. internal sealed class XmlDataImplementation : XmlImplementation {
  11. public XmlDataImplementation() : base() {
  12. }
  13. public override XmlDocument CreateDocument() {
  14. return new XmlDataDocument( this );
  15. }
  16. }
  17. }