コード例 #1
0
 public static bool TryRemoveClientConnection(string clientId, out MqttClientConnection clientConnection)
 {
     return(AllConnectedClients.TryRemove(clientId, out clientConnection));
 }
コード例 #2
0
 public static bool TryAddClientConnection(string clientId, MqttClientConnection clientConnection)
 {
     return(AllConnectedClients.TryAdd(clientId, clientConnection));
 }