Jan Aleksandrov
Jan Aleksandrov
Hi @jchristn I checked your solution and while client side it works, server side receives no notification that client has disconnected. I understand why this is the case, but it...
Would it be possible to create a callback for async streams? How else am I supposed to use `stream.ReadAsync()`?
@jchristn I want to have multiple clients connected to one tcp server. As far as I understand each client is anyway using own dedicated server socket, right? So I should...
Looking at WatsonTcpServer.cs in `private async Task DataReceiver` ``` ... else if (_Events.IsUsingStreams) { StreamReceivedEventArgs sr = null; WatsonStream ws = null; if (msg.ContentLength >= _Settings.MaxProxiedStreamSize) { ws = new...
Or perhaps even better, change `public event EventHandler StreamReceived;` to `public event AsyncEventHandler StreamReceived;`?
Thanks for reply. Answered exactly what I was rambling about :) > ...the event is handled synchronously is because it is assumed that the client code will be reading the...
Can someone with the issue pin `dmesg` log on usb insertion and on auth failed?
> We're looking to invest in this area (whether doc or feature) during this time frame. Perhaps we should write something even if temporary in the docs to explain the...
> @BrennanConroy can you provide an update based on our discussion yesterday? Anxiously awaiting reply
Here is how I did it; ``` private void ProlongConnectionAuthenticationExpiration(ClaimsPrincipal claimsPrincipal) { if (claimsPrincipal == null) { throw new ArgumentNullException(nameof(claimsPrincipal)); } // Get validation parameters. TokenValidationParameters? validationParameters = _serviceProvider.GetService(); if...