e79aa3c0ed
Former-commit-id: a2155e9bd80020e49e72e86c44da02a8ac0e57a4
40 lines
1.3 KiB
C#
40 lines
1.3 KiB
C#
//------------------------------------------------------------------------------
|
|
// <copyright file="ConfigXmlElement.cs" company="Microsoft">
|
|
// Copyright (c) Microsoft Corporation. All rights reserved.
|
|
// </copyright>
|
|
//------------------------------------------------------------------------------
|
|
|
|
namespace System.Configuration
|
|
{
|
|
using System.Configuration.Internal;
|
|
using System.IO;
|
|
using System.Xml;
|
|
using System.Security.Permissions;
|
|
|
|
internal sealed class ConfigXmlElement : XmlElement, IConfigErrorInfo {
|
|
int _line;
|
|
string _filename;
|
|
|
|
public ConfigXmlElement( string filename, int line, string prefix, string localName, string namespaceUri, XmlDocument doc )
|
|
: base( prefix, localName, namespaceUri, doc) {
|
|
_line = line;
|
|
_filename = filename;
|
|
}
|
|
int IConfigErrorInfo.LineNumber {
|
|
get { return _line; }
|
|
}
|
|
string IConfigErrorInfo.Filename {
|
|
get { return _filename; }
|
|
}
|
|
public override XmlNode CloneNode(bool deep) {
|
|
XmlNode cloneNode = base.CloneNode(deep);
|
|
ConfigXmlElement clone = cloneNode as ConfigXmlElement;
|
|
if (clone != null) {
|
|
clone._line = _line;
|
|
clone._filename = _filename;
|
|
}
|
|
return cloneNode;
|
|
}
|
|
}
|
|
}
|