Rolf Kristensen

Results 264 comments of Rolf Kristensen

Created: https://github.com/NLog/NLog.MSMQ (Missing AppVeyor-build-pipeline)

Created: https://github.com/NLog/NLog.WCF (Missing AppVeyor-build-pipeline)

Created: https://github.com/NLog/NLog.WindowsIdentity (Missing AppVeyor-build-pipeline)

Created https://github.com/NLog/NLog.PerformanceCounter (Missing AppVeyor-build-pipeline)

Microsoft have made this: https://docs.microsoft.com/en-us/dotnet/fundamentals/package-validation/overview ```xml true 5.0.0 ``` https://learn.microsoft.com/en-us/dotnet/fundamentals/package-validation/baseline-version-validator

@MajeQafouri PullRequests are always wellcome. As long they don't become giant monsters.

I guess it would make sense for the `KeepConnection=true` situation, that if the Socket has been used successfully before, then the target should perform an implicit connection-retry before doing hard...

Created #3124 to allow faster detection of broken socket connections. Probably need some extra logic to perform a zero-byte Send-call before using an existing socket: https://docs.microsoft.com/en-us/dotnet/api/system.net.sockets.socket.connected#examples

@martinmine You are more than welcome to create a PR. Maybe make it so you only perform the connection-check when socket has been unused for X seconds (Default Check Disabled...

@martinmine Like this: https://stackoverflow.com/a/53315852/193178 (Sync) ? or like this https://stackoverflow.com/a/32244584/193178 + https://stackoverflow.com/a/2015520/193178 (Async) ?