mirror of
https://github.com/ICDSystems/ICD.Common.Utils.git
synced 2026-02-14 04:05:04 +00:00
Created S# .sln and moved project to src folder
This commit is contained in:
29
ICD.Common/EventArguments/XmlRecursionEventArgs.cs
Normal file
29
ICD.Common/EventArguments/XmlRecursionEventArgs.cs
Normal file
@@ -0,0 +1,29 @@
|
||||
using System;
|
||||
using ICD.Common.Properties;
|
||||
|
||||
namespace ICD.Common.EventArguments
|
||||
{
|
||||
public sealed class XmlRecursionEventArgs : EventArgs
|
||||
{
|
||||
[PublicAPI]
|
||||
public string Outer { get; private set; }
|
||||
|
||||
[PublicAPI]
|
||||
public string[] Path { get; private set; }
|
||||
|
||||
#region Constructors
|
||||
|
||||
/// <summary>
|
||||
/// Constructor.
|
||||
/// </summary>
|
||||
/// <param name="outer"></param>
|
||||
/// <param name="path"></param>
|
||||
public XmlRecursionEventArgs(string outer, string[] path)
|
||||
{
|
||||
Outer = outer;
|
||||
Path = path;
|
||||
}
|
||||
|
||||
#endregion
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user