Mercurial > hg > Database > Christie-sharp
view datagear/command/ReplyCommand.cs @ 16:7352793b5dbe
add some Commands
author | riono <e165729@ie.u-ryukyu.ac.jp> |
---|---|
date | Sun, 22 Nov 2020 01:52:22 +0900 |
parents | |
children |
line wrap: on
line source
namespace Christie_net.datagear.command { public class ReplyCommand : PutCommand { public ReplyCommand(CommandBuilder cb) : base(cb) { } // 自身を書き込み実行させる public override void Execute() { connection.Write(this); } public void SetData(object data) { this.dg.SetData(data); } } }