Skip to content

Commit 2f14448

Browse files
committed
fix naming for auth fact access method
1 parent 5f90934 commit 2f14448

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/Regula.DocumentReader.NetCoreExample/Program.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,7 @@ public static void Main()
6868
var docIRB900 = docAuthenticity.IrB900Checks();
6969
var docIRB900Blank = docIRB900?.ChecksByElement(SecurityFeatureType.BLANK);
7070

71-
var docImagePattern = docAuthenticity.ImagePattern();
71+
var docImagePattern = docAuthenticity.ImagePatternChecks();
7272
var docImagePatternBlank = docImagePattern?.ChecksByElement(SecurityFeatureType.BLANK);
7373

7474
Console.WriteLine("-----------------------------------------------------------------");

src/Regula.DocumentReader.WebClient/Model/Ext/Autheticity/Autheticity.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ public static SecurityFeatureChecks IrB900Checks(this AuthenticityCheckList auth
1717
return auth.securityFeatureOrNull(AuthenticityResultType.IR_B900);
1818
}
1919

20-
public static IdentChecks ImagePattern(this AuthenticityCheckList auth)
20+
public static IdentChecks ImagePatternChecks(this AuthenticityCheckList auth)
2121
{
2222
return auth.identOrNull(AuthenticityResultType.IMAGE_PATTERN);
2323
}

0 commit comments

Comments
 (0)