aboutsummaryrefslogtreecommitdiff
path: root/MediaBrowser.Model/Tasks/TaskCompletionEventArgs.cs
diff options
context:
space:
mode:
Diffstat (limited to 'MediaBrowser.Model/Tasks/TaskCompletionEventArgs.cs')
-rw-r--r--MediaBrowser.Model/Tasks/TaskCompletionEventArgs.cs18
1 files changed, 16 insertions, 2 deletions
diff --git a/MediaBrowser.Model/Tasks/TaskCompletionEventArgs.cs b/MediaBrowser.Model/Tasks/TaskCompletionEventArgs.cs
index 48950667e..ab2c0ada5 100644
--- a/MediaBrowser.Model/Tasks/TaskCompletionEventArgs.cs
+++ b/MediaBrowser.Model/Tasks/TaskCompletionEventArgs.cs
@@ -1,19 +1,33 @@
-#pragma warning disable CS1591
-
using System;
namespace MediaBrowser.Model.Tasks
{
+ /// <summary>
+ /// Class containing event arguments for task completion.
+ /// </summary>
public class TaskCompletionEventArgs : EventArgs
{
+ /// <summary>
+ /// Initializes a new instance of the <see cref="TaskCompletionEventArgs"/> class.
+ /// </summary>
+ /// <param name="task">Instance of the <see cref="IScheduledTaskWorker"/> interface.</param>
+ /// <param name="result">The task result.</param>
public TaskCompletionEventArgs(IScheduledTaskWorker task, TaskResult result)
{
Task = task;
Result = result;
}
+ /// <summary>
+ /// Gets the task.
+ /// </summary>
+ /// <value>The task.</value>
public IScheduledTaskWorker Task { get; }
+ /// <summary>
+ /// Gets the result.
+ /// </summary>
+ /// <value>The result.</value>
public TaskResult Result { get; }
}
}