csharp Web API

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了csharp Web API相关的知识,希望对你有一定的参考价值。

    [StringLength(7), Required]  
    public string Name { get; set; }  
  
    public string surname { get; set; }  
    [Range(0, 99)]  
    public Int16 age { get; set; }  
  
    [RegularExpression("^[0-9]*$")]  
    public string PhoneNo { get; set; }  
  
    [RegularExpression(@"^([\w\.\-]+)@([\w\-]+)((\.(\w){2,3})+)$")]  
    public string Email { get; set; }  

以上是关于csharp Web API的主要内容,如果未能解决你的问题,请参考以下文章

csharp web api自定义模型过滤

csharp 返回附件web api c#

csharp Web API的抽象模型绑定

csharp Web API集成测试

csharp 如何在Web Api中限制请求?

csharp AutoMoq Web Api控制器