Exemplo n.º 1
0
 /// <summary>
 /// Get Qwerk's analog inputs service.
 /// </summary>
 ///
 /// <returns>Returns Qwerk's analog inputs service.</returns>
 ///
 /// <remarks>For the list of possible exceptions, see documentation to
 /// <see cref="Qwerk.AnalogIn(Qwerk)"/>.</remarks>
 ///
 public Qwerk.AnalogIn GetAnalogInService( )
 {
     if (analogIns == null)
     {
         analogIns = new AnalogIn(this);
     }
     return(analogIns);
 }
Exemplo n.º 2
0
 /// <summary>
 /// Get Qwerk's analog inputs service.
 /// </summary>
 /// 
 /// <returns>Returns Qwerk's analog inputs service.</returns>
 /// 
 /// <remarks>For the list of possible exceptions, see documentation to
 /// <see cref="Qwerk.AnalogIn(Qwerk)"/>.</remarks>
 /// 
 public Qwerk.AnalogIn GetAnalogInService( )
 {
     if ( analogIns == null )
     {
         analogIns = new AnalogIn( this );
     }
     return analogIns;
 }