文件名称:Web-Anchor:Web Anchor提供类型安全,可测试和灵活的,运行时生成的Web资源访问
文件大小:128KB
文件格式:ZIP
更新时间:2024-06-09 15:35:24
c-sharp json api-client httpclient C#
网络锚 Web锚提供了类型安全,可测试和灵活的,运行时生成的Web资源访问。 安装 要安装Web Anchor,请在运行以下命令 PM> Install-Package WebAnchor 用 [ BaseLocation ( " api/customer " )] public interface ICustomerApi { [ Get ( " {id} " )] Task < Customer> GetCustomer ( int id ); } .... var customerApi = Api . For < ICustomerApi>( " http://localhost:1111/ " ); await customerApi . GetCustomer ( 9 ); // => HTTP GET http://localhost:1111/ap