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

UpdateOffice() public method

public UpdateOffice ( ) : System.Threading.Tasks.Task
return System.Threading.Tasks.Task
        public async Task UpdateOffice()
        {
            var installOffice = new InstallOffice();
           
        }

Usage Example

 public Task UpdateOffice()
 {
     if (isLocal)
     {
         return(LocalInstall.UpdateOffice());
     }
     else
     {
         return(WmiInstall.UpdateOffice());
     }
 }