Files
FSI.BT.IR.Tools/RoboSharp/Interfaces/IRoboCopyCombinedExitStatus.cs
Maier Stephan SI 1c68b8f401 Sicherung
2023-04-17 07:07:49 +02:00

35 lines
1.1 KiB
C#

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; }
}
}