2016-08-03 10:59:49 +00:00
|
|
|
//------------------------------------------------------------------------------
|
|
|
|
// <copyright file="XmlDataImplementation.cs" company="Microsoft">
|
|
|
|
// Copyright (c) Microsoft Corporation. All rights reserved.
|
|
|
|
// </copyright>
|
2017-08-21 15:34:15 +00:00
|
|
|
// <owner current="true" primary="true">Microsoft</owner>
|
|
|
|
// <owner current="true" primary="false">Microsoft</owner>
|
2016-08-03 10:59:49 +00:00
|
|
|
//------------------------------------------------------------------------------
|
|
|
|
#pragma warning disable 618 // ignore obsolete warning about XmlDataDocument
|
|
|
|
namespace System.Xml {
|
|
|
|
|
|
|
|
internal sealed class XmlDataImplementation : XmlImplementation {
|
|
|
|
|
|
|
|
public XmlDataImplementation() : base() {
|
|
|
|
}
|
|
|
|
|
|
|
|
public override XmlDocument CreateDocument() {
|
|
|
|
return new XmlDataDocument( this );
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|