Tomasz
Tomasz
Hi there, I've noticed that in readme You wrote that HTTPS isn't supported. In similar project (Espurna) I found some interesting methods https://github.com/xoseperez/espurna/blob/master/code/espurna/web.ino#L330 #if ASYNC_TCP_SSL_ENABLED & WEB_SSL_ENABLED _server->onSslFileRequest(_onCertificate, NULL); _server->beginSecure("server.cer",...
I know this is a bit off-topic, but what programming language and tools did You use? I'd like to create a similar app in C# (.NET Core can run on...
**Is your feature request related to a problem? Please describe.** I was searching for a clean way to use ASP. NET 5 API protected by identity server 4 in Nextjs....
Hi, please consider adding ability to add custom headers for handshake. In [RFC6455 ](https://tools.ietf.org/html/rfc6455#section-4.1) there one interesting point: > The request MAY include any other header fields, for example, >...
This wizard supports Homie v2 specification. Do You have any plans to support Homie v3.0.1 (latest released at this time) specification? As a new version of `homie-esp8266` library is developed...
The relay board has opto-isolation, so ideally it should be used to prevent damaging the ESP. Take a look at https://forum.arduino.cc/index.php?topic=185234.msg2651260#msg2651260 I've used relay boards before, but with Raspberry. I...
I have a REST API that needs to support a dynamic model, I have this endpoint: ``` [HttpPost("{entity}")] [ProducesResponseType(typeof(object), StatusCodes.Status200OK)] [ProducesResponseType(StatusCodes.Status400BadRequest)] [AllowAnonymous] public async Task CreateSingleRecord2([ModelBinder(typeof(CreateSingleRecordBinder))] CreateSingleRecord model) { //process...
This change allows binding to properties that have `JsonPropertyName` or `JsonProperty`. I've also adjusted the sample to show the new behavior. Tested locally with both Test.Json and Newtonsoft.Json Closes https://github.com/billbogaiv/hybrid-model-binding/issues/61
I've noticed that after adding HybridModelBinding to my project `JsonProperty` attributes stopped working. Below is a very simple controller that allows testing this behaviour: ``` namespace HybridModelBinding.Samples.Controllers { [Route("api/[controller]")] [ApiController]...
some cleanup that was suggested by Resharper. Things to consider (probably in the next PR). Should I replace ``` var hasBindingAttribute = parameterModel.Attributes .Any(x => typeof(IBindingSourceMetadata).IsAssignableFrom(x.GetType())); ``` with ``` var...