Sicherung

This commit is contained in:
Maier Stephan SI
2023-04-17 07:07:49 +02:00
parent f3f89b94f5
commit 1c68b8f401
1307 changed files with 7918 additions and 82491 deletions

View File

@@ -0,0 +1,25 @@
using System;
using System.Security.Cryptography.X509Certificates;
using RoboSharp.EventArgObjects;
// Do Not change NameSpace here! -> Must be RoboSharp due to prior releases
namespace RoboSharp
{
/// <summary>
/// <inheritdoc cref="Results.RoboCopyResults"/>
/// </summary>
public class RoboCommandCompletedEventArgs : TimeSpanEventArgs
{
/// <summary>
/// Return the Results object
/// </summary>
/// <param name="results"></param>
internal RoboCommandCompletedEventArgs(Results.RoboCopyResults results) : base(results.StartTime, results.EndTime, results.TimeSpan)
{
this.Results = results;
}
/// <inheritdoc cref="Results.RoboCopyResults"/>
public Results.RoboCopyResults Results { get; }
}
}