예제 #1
0
 /// <summary>
 /// Sets the WLanMacAddress Device Detail Value
 /// </summary>
 public static void WLanMacAddress(this IEnumerable<DeviceDetail> details, Device device, string WLanMacAddress)
 {
     device.SetDetail(DeviceDetail.ScopeHardware, DeviceDetail.HardwareKeyWLanMacAddress, WLanMacAddress);
 }
예제 #2
0
 /// <summary>
 /// Sets the Battery Device Detail Value
 /// </summary>
 public static void Battery(this IEnumerable<DeviceDetail> details, Device device, string Battery)
 {
     device.SetDetail(DeviceDetail.ScopeHardware, DeviceDetail.HardwareKeyBattery, Battery);
 }
예제 #3
0
 /// <summary>
 /// Sets the Keyboard Device Detail Value
 /// </summary>
 public static void Keyboard(this IEnumerable<DeviceDetail> details, Device device, string Keyboard)
 {
     device.SetDetail(DeviceDetail.ScopeHardware, DeviceDetail.HardwareKeyKeyboard, Keyboard);
 }
예제 #4
0
 /// <summary>
 /// Sets the ACAdapter Device Detail Value
 /// </summary>
 public static void ACAdapter(this IEnumerable<DeviceDetail> details, Device device, string ACAdapter)
 {
     device.SetDetail(DeviceDetail.ScopeHardware, DeviceDetail.HardwareKeyACAdapter, ACAdapter);
 }