Пример #1
0
 public override XBeeNetwork GetNetwork()
 {
     if (!IsOpen)
     {
         throw new InterfaceNotOpenException();
     }
     if (network == null)
     {
         network = new DigiMeshNetwork(this);
     }
     return(network);
 }
 public override XBeeNetwork GetNetwork()
 {
     if (!IsOpen)
         throw new InterfaceNotOpenException();
     if (network == null)
         network = new DigiMeshNetwork(this);
     return network;
 }