/// <summary>
 /// Class constructor. Instantiates a new <see cref="RemoteDigiPointDevice"/> object with the given
 /// local <see cref="DigiPointDevice"/> which contains the connection interface to be used.
 /// </summary>
 /// <param name="localXBeeDevice">The local point-to-multipoint device that will behave as connection
 /// interface to communicate with this remote point-to-multipoint device.</param>
 /// <param name="addr64">The 64-bit address to identify this remote point-to-multipoint device.</param>
 /// <exception cref="ArgumentException">If <paramref name="localXBeeDevice"/> is remote.</exception>
 /// <exception cref="ArgumentNullException">If <c><paramref name="localXBeeDevice"/> == null</c>
 /// or if <c><paramref name="addr64"/> == null</c>.</exception>
 /// <seealso cref="DigiPointDevice"/>
 /// <seealso cref="XBee64BitAddress"/>
 public RemoteDigiPointDevice(DigiPointDevice localXBeeDevice, XBee64BitAddress addr64)
     : base(localXBeeDevice, addr64)
 {
 }
Example #2
0
 /// <summary>
 /// Initializes a new instance of <see cref="DigiPointNetwork"/>.
 /// </summary>
 /// <param name="device">A local DigiPoint device to get the network from.</param>
 /// <exception cref="ArgumentNullException">If <c><paramref name="device"/> == null</c>.</exception>
 /// <seealso cref="DigiPointDevice"/>
 /// <seealso cref="XBeeNetwork(AbstractXBeeDevice)"/>
 internal DigiPointNetwork(DigiPointDevice device)
     : base(device)
 {
 }