Example #1
0
 /// <summary>
 /// Sets the status of usb mode property that determine if usb mode is disk or bulk.
 /// You can choose between Disk mode, which is used as a removable disk, and Bulk mode, which is capable of high volume data communication, when connected with usb
 /// </summary>
 /// <param name="mode">enum of UsbMode</param>
 public void SetUsbMode(UsbMode mode)
 {
     Request(null, () => mClientV2.ReqSetupUsbMode(mode));
 }