Mercurial > hg > Database > Christie-sharp
view datagear/command/RemoteTakeCommand.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 | 4a3115ba746d |
line wrap: on
line source
using System.IO; using Christie_net.datagear.dg; namespace Christie_net.datagear.command { public class RemoteTakeCommand : Command{ public RemoteTakeCommand(CommandBuilder cb) : base(cb) { this.dg = new MessagePackDataGear<object>(this.clazz); } public override void Execute() { new CommandBuilder().init(CommandType.REPLY). } public override MemoryStream Convert() { throw new System.NotImplementedException(); } } }