Inheritance: ISendableVisitable
Ejemplo n.º 1
0
 public void Visit(Subonly subonly)
 {
     throw new NotImplementedException();
 }
Ejemplo n.º 2
0
 public override void Visit(Subonly subonly)
 {
     Logger.Write(subonly.Enabled ? "Subonly enabled" : "Subonly disabled"); //todo
       throw new NotImplementedException("Todo");
       //_websocket.Send(subonly.ToString());
 }
Ejemplo n.º 3
0
 public void Visit(Subonly subonly) {
   Print(subonly);
 }
Ejemplo n.º 4
0
 public override void Visit(Subonly subonly)
 {
     SendMsg(subonly.Enabled ? ".subscribersoff" : ".subscribers");
 }
Ejemplo n.º 5
0
 public virtual void Visit(Subonly subonly)
 {
     Print(subonly);
 }