Inheritance: ISendableVisitable
示例#1
0
 public void Visit(Subonly subonly)
 {
     throw new NotImplementedException();
 }
示例#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());
 }
示例#3
0
 public void Visit(Subonly subonly) {
   Print(subonly);
 }
示例#4
0
 public override void Visit(Subonly subonly)
 {
     SendMsg(subonly.Enabled ? ".subscribersoff" : ".subscribers");
 }
示例#5
0
 public virtual void Visit(Subonly subonly)
 {
     Print(subonly);
 }