ArgusTV.Recorders.Common.FileSizeChecker.Check C# (CSharp) Méthode

Check() public méthode

public Check ( ) : bool
Résultat bool
        public bool Check()
        {
            return Check(false);
        }

Same methods

FileSizeChecker::Check ( bool skipNonExistingFile ) : bool

Usage Example

Exemple #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());
 }