Sicherung
This commit is contained in:
34
RoboSharp/Interfaces/IRoboCopyCombinedExitStatus.cs
Normal file
34
RoboSharp/Interfaces/IRoboCopyCombinedExitStatus.cs
Normal 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; }
|
||||
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user