Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.
Comment: Migration of unmigrated content due to installation of a new plugin

...

No Format
for (int i = 0; ; i++)
      {
        Soap_Response_List_LicenseOrder LOList = c.GetLicenseOrderList(L.token, 100 * i);

        foreach (Soap_LicenseOrder LO in LOList.result_array)
        {
          // Process data in result array
        }

        if (LOList.result_array.Length < 100)
          break;
      }