pedrosbanioles

Results 7 comments of pedrosbanioles

If you are using .NET Framework, you could perhaps hook into the AppDomain.ProcessExit, you would of course need to try to include a reference to your CancellationTokenSource in order to...

Hi @ngraziano, I took a look at implementing support for SSL and the changes required don't look to be too huge: _RTSPListener.cs_ ```csharp using System.Net.Security; using System.Security.Authentication; using System.Security.Cryptography.X509Certificates; namespace...

Apologies, that PR is submitted for your review, im sure youll have been notified already.

The ReadAsync operation will be running as a continuous task. The inputStream will never be completed so the CopyToAsync operation will keep going. You would need something like this (albeit...

Sure, here is the sample i have for testing based on a Hik DVR we are using: ```csharp public static class HikvisionSDPSample { private const string _version = "v=0"; private...

#123 Submitted for replacing the method for validating with using regex, it should at least match 1 type and return the first instance or then throw a format exception if...

also tried this when running from powershell and ran into the same issue