Files
FSI.BT.IR.Tools/RoboSharp/Interfaces/IRoboCopyCombinedExitStatus.cs
Maier Stephan SI d01747f75a Sicherung
2023-01-02 04:33:49 +01: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; }
}
}