swagger.Net

【开源】.Net Api开放接口文档网站

孤街浪徒 提交于 2019-12-03 11:34:14
开源地址: http://git.oschina.net/chejiangyi/ApiView 开源QQ群: .net 开源基础服务 238543768 ApiView .net api的接口文档查看网站,用于解决 分布式开发 过程中的Api接口管理和沟通问题。 - 自动生成api文档; - 方便api调试及第三方开发人员对接,可以应用在asp.net mvc,wcf,webservice 中使用; - 代码及原理都很简单,方便二次开发和完善。 by 车江毅 安装包 使用git下载项目并打开目录 “\安装包\” 可直接安装使用 使用Demo示例 1 using System; 2 using System.Collections.Generic; 3 using System.Linq; 4 using System.Web; 5 using System.Web.Mvc; 6 using BSF.BaseService.OpenApi.Attributes; 7 using BSF.Extensions; 8 using BSF.Api; 9 10 namespace ApiViewTestWeb.Controllers 11 { 12 public class DemoController:Controller 13 { 14 // 15 // GET: /Demo/ 16