nats.TLSHandshakeFirst() implementation? #737
Answered
by
mtmk
ghostidentity
asked this question in
Q&A
-
Hello guys, I dont see the nats.TLSHandshakeFirst() on the library ? Thanks, |
Beta Was this translation helpful? Give feedback.
Answered by
mtmk
Feb 10, 2025
Replies: 2 comments 2 replies
-
Also on golang client, there are 4 handlers can be added. But on c#, it seems there are missing ? |
Beta Was this translation helpful? Give feedback.
1 reply
-
You can set the TLS mode to implicit: var opts = new NatsOpts { TlsOpts = new NatsTlsOpts { Mode = TlsMode.Implicit } };
await using var connection = new NatsConnection(opts); |
Beta Was this translation helpful? Give feedback.
1 reply
Answer selected by
ghostidentity
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
You can set the TLS mode to implicit: