Christian

Results 306 comments of Christian

The method `SubscribeAsync`returns a `MqttClientSubscribeResult` which has `Items`. One per topic filter which as sent before. Such an item has a `ResultCode` which should contain the same error code. But...

Also please check if you are connected properly. The result of the connect method returns an object with information from the server. It may have denied your connection request and...

To me it looks like that there is async/await usage issue. The code posted above has no await nor a `return Task.CompletedTask`, ```csharp static Task Server_InterceptingPublishAsync(InterceptingPublishEventArgs arg) { Client_Message =...

Is it possible that you track the memory consumption from dotmemory or Visual Studio? We need to identify which type of object is causing the memory leak. In your looks...

I understand the issue and the change look reasonable to me. The HTTP client in .NET behaves in the same way. The shorter timeout (or cancellation token) will cancel the...

> This aligns with typical .NET networking patterns (e.g., HttpClient with client certificates). Do you have some sample code how this is actually done in other components like HTTP Client?