How does one get started with .NET API? #3309
Unanswered
bekir-ozturk
asked this question in
Q&A
Replies: 2 comments
-
I believe |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
I have noticed that everything under .NET API was made internal some time ago. I also haven't been able to find a documentation on how to utilize msquic with .NET.
Is there some guidance regarding this?
I know that
System.Net.Quic
was introduced as a preview feature on .NET 7. But it is my understanding from the limited info I could find online that it relies on SChannel which isn't available below Windows 11. My hardware doesn't support W11 so I can't go this route. The potential devs I will want to share my prototypes with are also very unlikely to have Windows 11 (let alone a preview version of it.).SNQ also does not support datagrams, making the preview functionality in .NET 7 less appealing compared to MsQuic for the time being.
MsQuic+OpenSSL, on the other hand, seems like a good option to have something up an running on both Windows and Linux, if I can get around the accessibility issues. Next option seems to be cloning the repo and replacing
internal
withpublic
. Is there a better way?Beta Was this translation helpful? Give feedback.
All reactions