Example #1
0
 /// <summary>
 /// Requests the firmware installation
 /// </summary>
 /// <param name="file">Represents a binary file of firmware</param>
 /// <param name="version">Version of firmware typed string</param>
 public void RequestFirmwareInstallation(StorageFile file, string version = null)
 {
     Request(() => mClientV1.ReqPenSwUpgrade(file), () => { mClientV2.ReqPenSwUpgrade(file, version); });
 }