Example #1
0
		/// <summary>
		/// Abstract method.  Your subclass of StrengthAddon
		/// must implement this method and do whatever is 
		/// needed to get the current SSID from the indicated 
		/// adapter.  Return null if the adapter is not an RF 
		/// adapter, if it is not presently associated, or 
		/// there is an error.
		/// </summary>
		/// <param name="a">
		/// Instance of Adapter class for which SSID is to be returned
		/// </param>
		/// <returns>
		/// String SSID string or null for error or unassociated
		/// </returns>
		public abstract String RFSSID( Adapter a );
Example #2
0
		/// <summary>
		/// Abstract method.  Your subclass of StrengthAddon
		/// must implement this method and do whatever is 
		/// needed to get the RF signal strength in dB from
		/// the indicated adapter.  Return 0 if the adapter
		/// is not an RF adapter or there is an error.
		/// </summary>
		/// <param name="a">
		/// Instance of Adapter class for which signal strength is to be returned
		/// </param>
		/// <returns>
		/// int signal strength in dB or zero for error
		/// </returns>
		public abstract int RFSignalStrengthDB( Adapter a );