docs: update XML comments for Essentials Core

This commit is contained in:
Andrew Welker 2026-02-09 08:58:52 -06:00
parent 0764685c51
commit f88bb13367
260 changed files with 7018 additions and 1318 deletions

View file

@ -10,14 +10,23 @@ using Serilog.Events;
namespace PepperDash.Essentials.Core
{
/// <summary>
/// Static class for FileIO operations
/// </summary>
public static class FileIO
{
static CCriticalSection fileLock = new CCriticalSection();
/// <summary>
/// Delegate for GotFileEventHandler
/// </summary>
/// <summary>
/// Delegate for GotFileEventHandler
/// </summary>
/// <param name="sender"></param>
/// <param name="e"></param>
public delegate void GotFileEventHandler(object sender, FileEventArgs e);
/// <summary>
/// Event for GotFileEvent
/// </summary>
public static event GotFileEventHandler GotFileEvent;
/// <summary>
@ -297,6 +306,10 @@ namespace PepperDash.Essentials.Core
/// </summary>
public class FileEventArgs
{
/// <summary>
/// Constructor
/// </summary>
/// <param name="data"></param>
public FileEventArgs(string data) { Data = data; }
/// <summary>
/// Gets or sets the Data