2 writes to _progressPage
PresentationFramework (2)
src\Framework\MS\Internal\AppModel\XappLauncher.cs (2)
630_progressPage = GetCustomPage(_progressPageAssembly, _progressPageClass) as IProgressPage; 637_progressPage = new NativeProgressPageProxy(_nativeProgressPage);
11 references to _progressPage
PresentationFramework (11)
src\Framework\MS\Internal\AppModel\XappLauncher.cs (11)
453if (_progressPage != null) 455_progressPage.ApplicationName = args.ProductName; 472_progressPage.PublisherName = publisher; 633if (_progressPage == null) 640_progressPage.DeploymentPath = _deploymentManifest; 641_progressPage.StopCallback = new DispatcherOperationCallback(UserStop); 642_progressPage.RefreshCallback = new DispatcherOperationCallback(UserRefresh); 649BrowserWindow.Navigate(_progressPage); 861if (_progressPage != null) 863_progressPage.UpdateProgress(_bytesDownloaded, _bytesTotal); 1193IProgressPage2 pp2 = _progressPage as IProgressPage2;