Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ public EncryptedRCLItem(byte[] encryptedRCL = default)
/// </summary>
/// <value>Base64 encoded data</value>
/*
<example>[B@2e99d5e7</example>
<example>[B@233a3f8d</example>
*/
[DataMember(Name = "EncryptedRCL", IsRequired = true, EmitDefaultValue = true)]
public byte[] EncryptedRCL { get; set; }
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@
/// </summary>
/// <value>Base64 encoded data</value>
/*
<example>[B@2e99d5e7</example>
<example>[B@233a3f8d</example>
*/
[DataMember(Name = "EncryptedRCL", IsRequired = true, EmitDefaultValue = true)]
public byte[] EncryptedRCL { get; set; }
Expand Down Expand Up @@ -105,7 +105,7 @@
/// </summary>
/// <param name="validationContext">Validation context</param>
/// <returns>Validation Result</returns>
protected IEnumerable<ValidationResult> BaseValidate(ValidationContext validationContext)

Check warning on line 108 in src/Regula.DocumentReader.WebClient/Model/EncryptedRCLResult.cs

View workflow job for this annotation

GitHub Actions / run_smoke_test

'EncryptedRCLResult.BaseValidate(ValidationContext)' hides inherited member 'ResultItem.BaseValidate(ValidationContext)'. Use the new keyword if hiding was intended.
{
foreach (var x in base.BaseValidate(validationContext))
{
Expand Down
2 changes: 1 addition & 1 deletion src/Regula.DocumentReader.WebClient/Model/LicenseItem.cs
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ public LicenseItem(byte[] license = default)
/// </summary>
/// <value>Base64 encoded data</value>
/*
<example>[B@7696d06c</example>
<example>[B@167722e7</example>
*/
[DataMember(Name = "License", IsRequired = true, EmitDefaultValue = true)]
public byte[] License { get; set; }
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ public LicenseResult(byte[] license = default, int? bufLength = default, int? li
/// </summary>
/// <value>Base64 encoded data</value>
/*
<example>[B@7696d06c</example>
<example>[B@167722e7</example>
*/
[DataMember(Name = "License", IsRequired = true, EmitDefaultValue = true)]
public byte[] License { get; set; }
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -947,6 +947,16 @@ public enum ParsingNotificationCodes: long
/// </summary>
ntfLDS_Biometrics_BDB_Data_ImageDataType = 2417623040,

/// <summary>
/// Enum ntfLDS_SI_Storage_CS_NonConsistant for value: 2432696593
/// </summary>
ntfLDS_SI_Storage_CS_NonConsistant = 2432696593,

/// <summary>
/// Enum ntfLDS_SI_Storage_CS_PACE_CAM_Key_Missing for value: 2432696594
/// </summary>
ntfLDS_SI_Storage_CS_PACE_CAM_Key_Missing = 2432696594,

/// <summary>
/// Enum ntfLDS_Biometrics_RB_Data_Incorrect for value: 2449539072
/// </summary>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -282,6 +282,11 @@ public enum RfidDataFileType
/// </summary>
ID_DG21 = 121,

/// <summary>
/// Enum ID_DG22 for value: 122
/// </summary>
ID_DG22 = 122,

/// <summary>
/// Enum DL_COM for value: 150
/// </summary>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3299,7 +3299,12 @@ public enum TextFieldType
/// <summary>
/// Enum FT_DATA_DATE_OF_EXPIRY for value: 704
/// </summary>
FT_DATA_DATE_OF_EXPIRY = 704
FT_DATA_DATE_OF_EXPIRY = 704,

/// <summary>
/// Enum FT_CONSUL for value: 705
/// </summary>
FT_CONSUL = 705
}

}
Loading