FastHttpApi icon indicating copy to clipboard operation
FastHttpApi copied to clipboard

a lightweight and high-performance http/websocket service component in the dotnet core platform that supports TLS.

Results 19 FastHttpApi issues
Sort by recently updated
recently updated
newest added

![image](https://user-images.githubusercontent.com/57654644/183794270-4d44c3fc-6ef8-4016-a75c-49c3b0e684d3.png) ![image](https://user-images.githubusercontent.com/57654644/183794372-a7caa9dd-b581-41cc-a09a-19728fa823a5.png) 这边的几百个byte[]大小都和设置里面的BufferSize一样。在服务器接收的消息多了之后,会占用大量内存,直至把服务器内存撑爆。

Bumps [Microsoft.AspNetCore.All](https://github.com/aspnet/AspNetCore) from 2.1.2 to 2.1.15. Release notes Sourced from Microsoft.AspNetCore.All's releases. .NET Core 2.1.15 Release Notes Download and Install Repos Core CoreCLR CoreFX ASP Core-Setup CLI - 2.1.803 CLI...

dependencies

Bumps [Newtonsoft.Json](https://github.com/JamesNK/Newtonsoft.Json) from 11.0.2 to 13.0.1. Release notes Sourced from Newtonsoft.Json's releases. 13.0.1 New feature - Add JsonSelectSettings with configuration for a regex timeout Change - Remove portable assemblies from...

dependencies

在设置cookie函数里面,无法自定义的设置SameSite这个参数, 只能通过 **context.Response.SameSite = SameSiteType.None;** 进行设置,但是SameSiteType.None构造的请求是 "SessionId=1234567;Path=/;Domain=some.com;Expires=Thu, 30 Jun 2022 18:41:16 GMT;HttpOnly;SameSite=None" 收到浏览器错误提示如下: ![image](https://user-images.githubusercontent.com/42415346/172047656-ffa190d4-5d32-4a24-ace7-a5b75a037776.png) 如果设置 **context.Response.SameSite = SameSiteType.None;** ![image](https://user-images.githubusercontent.com/42415346/172047408-fa51b83f-969d-4c2c-892c-22f36f0e37dd.png) SameSite=None 必须这样浏览器才认 **SameSite=None; Secure** ![image](https://user-images.githubusercontent.com/42415346/172047292-03d12893-6278-404b-8c92-b1821dbc98f5.png)

如以下日志? 可以禁止吗? >>22:36:36 [Info ] [SYSTEM] register ServerController.__ServerStatus to [GET/POST:/__system/__ServerStatus] >>22:36:36 [Info ] [SYSTEM] register ServerController.__SetSettings to [POST:/__system/__SetSettings] >>22:36:36 [Info ] [SYSTEM] register ServerController.__ChangeAccessKey to [GET/POST:/__system/__ChangeAccessKey] >>22:36:36 [Info ] [SYSTEM]...

Is there a demo in the virtual directory? My tests always fail. The latest version and version 1.7.9.5 have been tested 哎 百度翻译了才去看看 作者是不是外国的,结果一看广州的,啊哈哈哈,请问一下 有没有关于 虚拟目录的demo ,我尝试了很就 就是没有创建成功, server.AddVirtualFolder("/D/", "D:");...

- Version **2.0.8** `BeetleX.CommandLineParser GetCommandLineParser(System.String[], Int32)` at BeetleX.CommandLineParser.GetCommandLineParser(String[] args, Int32 start) at BeetleX.CommandLineParser.GetCommandLineParser() at BeetleX.FastHttpApi.HttpApiServer..ctor(HttpOptions options)

Hi how to add brotli compression ?

``` ``` Unhandled exception. System.Reflection.ReflectionTypeLoadException: Unable to load one or more of the requested types. Method 'get_Name' in type 'BeetleX.FastHttpApi.HttpPacket' from assembly 'BeetleX.FastHttpApi, Version=2.2.22.188, Culture=neutral, PublicKeyToken=null' does not have an...

Hello, I'm converting from .netcore HttpListener to FastHttpApi, and I wonder how I could access the equivalent of HttpListenerRequest/HpptListenerResponse without relying on the routing to object