Ejemplo n.º 1
0
 public Topic(string topic, byte qos)
 {
     this.topic = topic;
     this.qos   = new Qos(qos);
 }
Ejemplo n.º 2
0
 public Topic(string topic)
 {
     this.topic = topic;
     qos        = new Qos();
 }
Ejemplo n.º 3
0
 public Topic(string topic, Qos qos)
 {
     this.topic = topic;
     this.qos   = qos;
 }