验证WCF中的输入参数

时间:2017-10-04 10:41:32

标签: c# wcf data-annotations

我试图验证在我的WCF服务中传递的输入参数,例如,我想确保即将到来的字符串参数不为空且长度为10,否则返回错误消息。

我尝试添加DataAnnotations,如下所示:

 public class Garantie
{
    #region fields
    [Required]
    [StringLength(10, MinimumLength = 10, ErrorMessage = "String length should be 10.")] 
    string CODE_BRANCHE;
    [Required]
    [Range(1,1, ErrorMessage = " length should be 1.")] 
    int CODE_SOUS_BRANCHE;      
    #endregion}

但这不起作用。我该如何解决这个问题?

0 个答案:

没有答案