Esempio n. 1
0
 /**
 * Test FailedDevice equality.
 * True if the devices are the same.
 * @since 2.4.0
 */
 public bool Equals(FailedDevice other)
 {
     return this.IsValid && other.IsValid && this.PnpId == other.PnpId;
 }
Esempio n. 2
0
 /**
  * Test FailedDevice equality.
  * True if the devices are the same.
  * @since 2.4.0
  */
 public bool Equals(FailedDevice other)
 {
     return(this.IsValid && other.IsValid && this.PnpId == other.PnpId);
 }