25'ten fazla konu seçemezsiniz
Konular bir harf veya rakamla başlamalı, kısa çizgiler ('-') içerebilir ve en fazla 35 karakter uzunluğunda olabilir.
|
- using MQTTnet.Core.Client;
- using MQTTnet.Implementations;
-
- namespace MQTTnet
- {
- public class MqttClientFactory : IMqttClientFactory
- {
- public IMqttClient CreateMqttClient()
- {
- return new MqttClient(new MqttCommunicationAdapterFactory());
- }
- }
- }
|