mirror of
https://github.com/PepperDash/Essentials.git
synced 2026-08-31 19:08:29 +00:00
docs: update XML comments for Essentials Core
This commit is contained in:
parent
0764685c51
commit
f88bb13367
260 changed files with 7018 additions and 1318 deletions
|
|
@ -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
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue