AY学习基于.NET Core的web api框架-FastHttpApi【5/12】

栏目: ASP.NET · 发布时间: 5年前

内容简介:此项目作者IKende ,github开源地址:此人博客园地址:我基于他的github项目的 samples学习的。反正我崇拜他

此项目作者IKende ,github开源地址: https://github.com/IKende

此人博客园地址: https://www.cnblogs.com/smark/

我基于他的github项目的 samples学习的。反正我崇拜他

自定义返回类型

    public object plaintext(IHttpContext context)
        {
            context.Response.Header[HeaderTypeFactory.DATE] = DateTime.Now.ToUniversalTime().ToString("r");
            return new TextResult("Hello, World!");
        }

异步处理

        [SkipFilter(typeof(JWTFilter))]
        public async Task<TextResult> TestTask(IHttpContext context)
        {
            var result = new TextResult("Hello, World!");
            await Task.Delay(1000);
            return result;
        }

花了1秒后返回结果

AY学习基于.NET Core的web api框架-FastHttpApi【5/12】

其他

    [Get(Route = "{name}")]
        public Task<String> Hello(string name)
        {
            string result = $"hello {name} {DateTime.Now}";
            return Task.FromResult(result);
        }

        public async Task<String> Wait()
        {
            await Task.Delay(2000);
            return $"{DateTime.Now}";
        }

设置Https访问

"SSL": true,

"CertificateFile": "c:\\ay2019.pfx",

"CertificatePassword": "******",

或者代码中

mApiServer.Options.SSL = true;

mApiServer.Options.CertificateFile = "c:\\ay2019.pfx";

mApiServer.Options.CertificatePassword = "******";

生成 pfx的openssl    http://www.ayjs.net/post/183.html

====================www.ayjs.net       杨洋    wpfui.com        ayui      ay  aaronyang=======请不要转载谢谢了。=========

推荐您阅读更多有关于“FastHttpApi,”的文章


以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持 码农网

查看所有标签

猜你喜欢:

本站部分资源来源于网络,本站转载出于传递更多信息之目的,版权归原作者或者来源机构所有,如转载稿涉及版权问题,请联系我们

Flow-Based Programming (2nd Edition)

Flow-Based Programming (2nd Edition)

CreateSpace / 2010-5-14 / $69.95

Written by a pioneer in the field, this is a thorough guide to the cost- and time-saving advantages of Flow-Based Programming. It explains the theoretical underpinnings and application of this program......一起来看看 《Flow-Based Programming (2nd Edition)》 这本书的介绍吧!

JS 压缩/解压工具
JS 压缩/解压工具

在线压缩/解压 JS 代码

JSON 在线解析
JSON 在线解析

在线 JSON 格式化工具

Base64 编码/解码
Base64 编码/解码

Base64 编码/解码