public AuthenticityResult(AuthenticityCheckResult authenticityCheckResult)
 {
     this.authenticityCheckResult = authenticityCheckResult;
 }
 public ImageIdentChecks(AuthenticityCheckResult authenticityCheckResult) : base(authenticityCheckResult)
 {
 }
Exemple #3
0
        private static IdentChecks identOrNull(this AuthenticityCheckList auth, int type)
        {
            AuthenticityCheckResult result = auth.resultByType(type);

            return(result != null ? new IdentChecks(result) : null);
        }
 public FiberChecks(AuthenticityCheckResult authenticityCheckResult) : base(authenticityCheckResult)
 {
 }
Exemple #5
0
        private static FiberChecks filberOrNull(this AuthenticityCheckList auth, int type)
        {
            AuthenticityCheckResult result = auth.resultByType(type);

            return(result != null ? new FiberChecks(result) : null);
        }
Exemple #6
0
        private static SecurityFeatureChecks securityFeatureOrNull(this AuthenticityCheckList auth, int type)
        {
            AuthenticityCheckResult result = auth.resultByType(type);

            return(result != null ? new SecurityFeatureChecks(result) : null);
        }
Exemple #7
0
        private static OCRSecurityTextChecks ocrSecurityTextOrNull(this AuthenticityCheckList auth, int type)
        {
            AuthenticityCheckResult result = auth.resultByType(type);

            return(result != null ? new OCRSecurityTextChecks(result) : null);
        }
 public SecurityFeatureChecks(AuthenticityCheckResult authenticityResult) : base(authenticityResult)
 {
 }
Exemple #9
0
 public OCRSecurityTextChecks(AuthenticityCheckResult authenticityCheckResult) : base(authenticityCheckResult)
 {
 }