Example #1
0
 /// <summary>
 /// Sets the frequency the device is to be tuned to.
 /// </summary>
 /// <param name="frequency">Specified frequency</param>
 /// <returns>Returns true if the specified frequency is set.</returns>
 /// <exception cref="ArgumentOutOfRangeException">Throws if the specified frequency is out of operation range</exception>
 public bool TryFrequency(uint frequency)
 {
     CheckFrequency(frequency);
     return(G313Api.SetFrequency(GetHandle(), frequency));
 }