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
- Host: GitHub
- URL: https://github.com/noahmorrison/signalrbug
- Owner: noahmorrison
- Created: 2019-07-16T15:30:26.000Z (almost 7 years ago)
- Default Branch: master
- Last Pushed: 2019-07-16T16:08:00.000Z (almost 7 years ago)
- Last Synced: 2025-02-06T10:14:43.553Z (over 1 year ago)
- Language: C#
- Size: 9.77 KB
- Stars: 0
- Watchers: 0
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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)