comparison datagear/command/RemoteTakeCommand.cs @ 39:9217d14cc220

fix NetworkStream
author riono <e165729@ie.u-ryukyu.ac.jp>
date Tue, 25 May 2021 02:35:52 +0900
parents 3aaa77e12493
children 486683ead53f
comparison
equal deleted inserted replaced
38:9f8e1087c61b 39:9217d14cc220
9 9
10 public override void Execute() { 10 public override void Execute() {
11 new CommandBuilder().Init(CommandType.REPLY).Connection(connection).Key(key).Dg(dg).Build().Execute(); 11 new CommandBuilder().Init(CommandType.REPLY).Connection(connection).Key(key).Dg(dg).Build().Execute();
12 } 12 }
13 13
14 public override MemoryStream Convert() { 14 public override byte[] Convert() {
15 throw new System.NotImplementedException(); 15 throw new System.NotImplementedException();
16 } 16 }
17 } 17 }
18 } 18 }