예제 #1
0
 /// <summary>
 /// Constructor for the bind transmitter
 /// </summary>
 public bind_transmitter(string sid, string pwd, string stype, byte ifver, address_range arange)
     :
     base(Commands.BIND_TRANSMITTER)
 {
     this.SystemID         = sid;
     this.Password         = pwd;
     this.SystemType       = stype;
     this.InterfaceVersion = ifver;
     this.AddressRange     = arange;
 }
예제 #2
0
 /// <summary>
 /// Constructor for the bind transceiver
 /// </summary>
 public bind_transceiver(string sid, string pwd, string stype, interface_version ifver, address_range arange)
     :
     base(Commands.BIND_TRANSCEIVER)
 {
     this.SystemID         = sid;
     this.Password         = pwd;
     this.SystemType       = stype;
     this.InterfaceVersion = ifver.Value;
     this.AddressRange     = arange;
 }