Files
T

34 lines
917 B
C#
Raw Normal View History

2026-04-04 13:30:13 +02:00
using System.Collections.Generic;
namespace Microsoft.Extensions.Logging.Log4Net.AspNetCore.Entities
{
/// <summary>
/// Class to store information of a log4net xml config file node.
/// </summary>
public class NodeInfo
{
/// <summary>
/// Gets or sets the x path to find the node to override.
/// </summary>
/// <value>
/// The x path.
/// </value>
public string XPath { get; set; }
/// <summary>
/// Gets or sets the content of the node.
/// </summary>
/// <value>
/// The content of the node.
/// </value>
public string NodeContent { get; set; }
/// <summary>
/// Gets or sets the attributes.
/// </summary>
/// <value>
/// The attributes.
/// </value>
public Dictionary<string, string> Attributes { get; set; }
}
}