-
Hello, First of all. Awesome library. Really like what you've done here. My question is how does one use cookies. What I'm trying to do is have my client connect to the server with a cookie attached to it, with for example a name and value. I then want the server to be able to grab this cookie from the connecting client by name and read the value of this cookie. I tried using args.HttpRequest.Cookies but it doesn't matter what I've done so far because it will always return an empty string. I could not find anything about this in the documentation so I decided to ask here. Any help would be highly appreciated. |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 2 replies
-
Hi @MeapVR thank you for your kind words, it is much appreciated. I was able to do this using the Specifically in the client, within
And within the server
Is that what you're attempting to do? |
Beta Was this translation helpful? Give feedback.
Hi @MeapVR thank you for your kind words, it is much appreciated.
I was able to do this using the
Test.Server
andTest.Client
projects:Specifically in the client, within
InitializeClient
:And within the server
ClientConnected
:Is that what you're attempting to do?