
MPremkumar319398 (Community Member) asked a question.
This error showing the error number where the constructor declared example below
public List<string> ChangedProperties { get; set; }
public bool ShouldDisable { get; set; }
public BusinessRecipient()
{
ChangedProperties = new List<string>();
}
I have tried the data annotation solution
[Required]
public List<string> ChangedProperties { get; set; }
public bool ShouldDisable { get; set; }
public BusinessRecipient()
{
ChangedProperties = new List<string>();
}
.png)
Hi MPremkumar319398, you can find my answer to this question at this URL: https://community.veracode.com/s/question/0D53400003lhTjOCAU/subject-technologyspecific-input-validation-problems-cwe-id-100