An open API service indexing awesome lists of open source software.

https://github.com/noahmorrison/signalrbug

Bug might be a strong term, I probably just don't know what I'm doing
https://github.com/noahmorrison/signalrbug

Last synced: about 1 year ago
JSON representation

Bug might be a strong term, I probably just don't know what I'm doing

Awesome Lists containing this project

README

          

# SignalRBug
Bug might be a strong term, I probably just don't know what I'm doing

Building
--------

Should just work ™ with VSCode

Issue
-----

Sending complex types (in this case the class PingClass) sends with null fields.

Output
~~~
Ping type Ping: Hello
Ping type None:
Ping (Hello) == None (): False
~~~

Expected Outout
~~~
Ping type Ping: Hello
Ping type Ping: Hello
Ping (Hello) == Ping (Hello): True
~~~

Sending happens in [Startup.cs](./SignalRBug/Startup.cs#L40)

[Possible related issue](https://github.com/aspnet/AspNetCore/issues/11900)