Check() public method

public Check ( ) : bool
return bool
Ejemplo n.º 1
0
 virtual protected bool OnCheckFileSize()
 {
     // If _fileSizeChecker is still null, we are in the prepare phase, but we also
     // consider this as good, the file will (as far as we know) still be recorded.
     return(_fileSizeChecker == null || _fileSizeChecker.Check());
 }