view datagear/command/CommandBuilder.cs @ 8:e6f5b7d14dd1

update DataGears
author riono <e165729@ie.u-ryukyu.ac.jp>
date Mon, 12 Oct 2020 00:49:32 +0900
parents 5c334a1fbc5e
children ce6906edcbf4
line wrap: on
line source

using System;

namespace Christie_net.datagear.command {
public class CommandBuilder {
    protected CodeGear cg = null; // for localtake
    protected int? cgmID = null; // for local meta
    protected Type clazz = null; // for remote
    protected Connection connection = null; // for reply
    protected DataGear dg = null; // for put/localtake/reply
    protected string fromDgmname = "local"; // for remotetake/reply
    protected string kye = null;
    protected string toDgmName = null; // for take
    protected CommandType type; // need
}
}