Mercurial > hg > Database > Christie-sharp
view datagear/command/RemoteTakeCommand.cs @ 17:4a3115ba746d
fix CommandType enum
author | riono <e165729@ie.u-ryukyu.ac.jp> |
---|---|
date | Tue, 24 Nov 2020 03:11:50 +0900 |
parents | 7352793b5dbe |
children | 3aaa77e12493 |
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(); } } }