In this class for example, I want to force a limit of characters the first/last name can allow.
public class Person
{
public string FirstName { get; set; }
public string LastName { get; set; }
}
Is there a way to force the string limit restriction for the first or last name, so when the client serializes this before sending it to me, it would throw an error on their side if it violates the lenght restriction?
Update: this needs to be identified and forced in the WSDL itself, and not after I've recieved the invalid data.
necro time... It worth mentioning though.
using System.ComponentModel.DataAnnotations;
public class Person
{
[StringLength(255, ErrorMessage = "Error")]
public string FirstName { get; set; }
[StringLength(255, ErrorMessage = "Error")]
public string LastName { get; set; }
}
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With