Microsoft.OfficeProPlus.InstallGenerator.Implementation.OfficeLocalInstallManager.GetOfficeLatestVersion C# (CSharp) Method

GetOfficeLatestVersion() public method

public GetOfficeLatestVersion ( string branch, OfficeEdition edition ) : Task
branch string
edition OfficeEdition
return Task
        public async Task<string> GetOfficeLatestVersion(string branch, OfficeEdition edition)
        {
            var ppDownload = new ProPlusDownloader();
            var latestVersion = await ppDownload.GetLatestVersionAsync(branch, edition);
            return latestVersion;
        }