public AuthenticityResult(AuthenticityCheckResult authenticityCheckResult) { this.authenticityCheckResult = authenticityCheckResult; }
public ImageIdentChecks(AuthenticityCheckResult authenticityCheckResult) : base(authenticityCheckResult) { }
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) { }
private static FiberChecks filberOrNull(this AuthenticityCheckList auth, int type) { AuthenticityCheckResult result = auth.resultByType(type); return(result != null ? new FiberChecks(result) : null); }
private static SecurityFeatureChecks securityFeatureOrNull(this AuthenticityCheckList auth, int type) { AuthenticityCheckResult result = auth.resultByType(type); return(result != null ? new SecurityFeatureChecks(result) : null); }
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) { }
public OCRSecurityTextChecks(AuthenticityCheckResult authenticityCheckResult) : base(authenticityCheckResult) { }