view datagear/command/CloseCommand.cs @ 71:1169915705ab default tip

fix TopologyNode connect
author KaitoMaeshiro <aosskaito@cr.ie.u-ryukyu.ac.jp>
date Sun, 06 Feb 2022 16:47:41 +0900
parents 9217d14cc220
children
line wrap: on
line source

using System.IO;
using Christie_net.daemon;

namespace Christie_net.datagear.command {
public class CloseCommand : Command {
    public CloseCommand(CommandBuilder cb) : base(cb) { }
    
    public override void Execute() {
        connection.Close();
    }

    public override byte[] Convert() {
        return null;
    }
}
}