Skip to content
Closed
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 @@ protected EncryptedRCLItem() { }
/// </summary>
/// <value>Base64 encoded data</value>
/*
<example>[B@15773356</example>
<example>[B@5b5e9f3c</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@15773356</example>
<example>[B@5b5e9f3c</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 @@ protected LicenseItem() { }
/// </summary>
/// <value>Base64 encoded data</value>
/*
<example>[B@65112c5d</example>
<example>[B@3d4ad955</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 @@ protected LicenseResult() { }
/// </summary>
/// <value>Base64 encoded data</value>
/*
<example>[B@65112c5d</example>
<example>[B@3d4ad955</example>
*/
[DataMember(Name = "License", IsRequired = true, EmitDefaultValue = true)]
public byte[] License { get; set; }
Expand Down
4 changes: 2 additions & 2 deletions src/Regula.DocumentReader.WebClient/Model/MDLResult.cs
Original file line number Diff line number Diff line change
Expand Up @@ -46,8 +46,8 @@ protected MDLResult() { }
/// <param name="light">light.</param>
/// <param name="listIdx">listIdx.</param>
/// <param name="pageIdx">pageIdx.</param>
/// <param name="resultType">resultType (required) (default to Result.MDL_DEVICE_PARSED_RESPONSE).</param>
public MDLResult(Dictionary<string, Object> mDLParsedResponse = default(Dictionary<string, Object>), int bufLength = default(int), int light = default(int), int listIdx = default(int), int pageIdx = default(int), Result resultType = Result.MDL_DEVICE_PARSED_RESPONSE) : base(bufLength, light, listIdx, pageIdx, resultType)
/// <param name="resultType">resultType (required) (default to Result.MDL_PARSED_RESPONSE).</param>
public MDLResult(Dictionary<string, Object> mDLParsedResponse = default(Dictionary<string, Object>), int bufLength = default(int), int light = default(int), int listIdx = default(int), int pageIdx = default(int), Result resultType = Result.MDL_PARSED_RESPONSE) : base(bufLength, light, listIdx, pageIdx, resultType)
{
// to ensure "mDLParsedResponse" is required (not null)
if (mDLParsedResponse == null)
Expand Down
19 changes: 2 additions & 17 deletions src/Regula.DocumentReader.WebClient/Model/Result.cs
Original file line number Diff line number Diff line change
Expand Up @@ -212,24 +212,9 @@ public enum Result
DTC_VC = 109,

/// <summary>
/// Enum MDL_DEVICE_RAW_RESPONSE for value: 120
/// Enum MDL_PARSED_RESPONSE for value: 121
/// </summary>
MDL_DEVICE_RAW_RESPONSE = 120,

/// <summary>
/// Enum MDL_DEVICE_PARSED_RESPONSE for value: 121
/// </summary>
MDL_DEVICE_PARSED_RESPONSE = 121,

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

/// <summary>
/// Enum MDL_SERVER_PARSED_RESPONSE for value: 123
/// </summary>
MDL_SERVER_PARSED_RESPONSE = 123,
MDL_PARSED_RESPONSE = 121,

/// <summary>
/// Enum VDS_NC for value: 124
Expand Down
Loading