Example #1
0
 public DiskCheckResult(
     string checkerName,
     DiskCheckerSettings settings,
     double driveSpace,
     bool isOk,
     bool wasErrorOnLastCheck) : base(checkerName, isOk, wasErrorOnLastCheck)
 {
     _driveSpace = driveSpace;
     _settings   = settings;
 }
Example #2
0
 public DiskChecker(DiskCheckerSettings settings)
 {
     _settings = settings;
 }