This commit is contained in:
Stephan Maier
2024-08-27 08:10:27 +02:00
parent eb5c2fa502
commit 647f938eee
617 changed files with 73086 additions and 7137 deletions

View File

@@ -0,0 +1,34 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.ComponentModel;
using RoboSharp.Results;
namespace RoboSharp.Interfaces
{
/// <summary>
/// Read-Only interface for <see cref="RoboCopyCombinedExitStatus"/>
/// </summary>
/// <remarks>
/// <see href="https://github.com/tjscience/RoboSharp/wiki/IRoboCopyCombinedExitStatus"/>
/// </remarks>
public interface IRoboCopyCombinedExitStatus : INotifyPropertyChanged, ICloneable
{
/// <inheritdoc cref="RoboCopyCombinedExitStatus.WasCancelled"/>
bool WasCancelled { get; }
/// <inheritdoc cref="RoboCopyCombinedExitStatus.AnyNoCopyNoError"/>
bool AnyNoCopyNoError { get; }
/// <inheritdoc cref="RoboCopyCombinedExitStatus.AnyWasCancelled"/>
bool AnyWasCancelled { get; }
/// <inheritdoc cref="RoboCopyCombinedExitStatus.AllSuccessful"/>
bool AllSuccessful { get; }
/// <inheritdoc cref="RoboCopyCombinedExitStatus.AllSuccessful_WithWarnings"/>
bool AllSuccessful_WithWarnings { get; }
}
}