| File: XmlConfigurationElementAttributeValue.cs | Web Access |
| Project: src\runtime\src\libraries\Microsoft.Extensions.Configuration.Xml\src\Microsoft.Extensions.Configuration.Xml.csproj (Microsoft.Extensions.Configuration.Xml) |
// Licensed to the .NET Foundation under one or more agreements. // The .NET Foundation licenses this file to you under the MIT license. using System; namespace Microsoft.Extensions.Configuration.Xml { internal sealed class XmlConfigurationElementAttributeValue { public XmlConfigurationElementAttributeValue(string attribute, string value, int? lineNumber, int? linePosition) { ArgumentNullException.ThrowIfNull(attribute); ArgumentNullException.ThrowIfNull(value); Attribute = attribute; Value = value; LineNumber = lineNumber; LinePosition = linePosition; } public string Attribute { get; } public string Value { get; } public int? LineNumber { get; } public int? LinePosition { get; } } }