DeploymentDownloadException Class

Definition

Indicates that there was an error downloading either the ClickOnce manifests or the deployment's files to the client computer.

C#
[System.Serializable]
public class DeploymentDownloadException : System.Deployment.Application.DeploymentException
Inheritance
DeploymentDownloadException
Attributes

Examples

The following code example installs an application update synchronously, and reports to the user if there was a problem downloading either the manifests or the deployment's files.

C#
private void InstallUpdateSync()
{
    if (ApplicationDeployment.IsNetworkDeployed)
    {
        Boolean updateAvailable = false;
        ApplicationDeployment ad = ApplicationDeployment.CurrentDeployment;

        try
        {
            updateAvailable = ad.CheckForUpdate();
        }
        catch (DeploymentDownloadException dde)
        {
            // This exception occurs if a network error or disk error occurs
            // when downloading the deployment.
            MessageBox.Show("The application cannt check for the existence of a new version at this time. \n\nPlease check your network connection, or try again later. Error: " + dde);
            return;
        }
        catch (InvalidDeploymentException ide)
        {
            MessageBox.Show("The application cannot check for an update. The ClickOnce deployment is corrupt. Please redeploy the application and try again. Error: " + ide.Message);
            return;
        }
        catch (InvalidOperationException ioe)
        {
            MessageBox.Show("This application cannot check for an update. This most often happens if the application is already in the process of updating. Error: " + ioe.Message);
            return;
        }

        if (updateAvailable)
        {
            try
            {
                ad.Update();
                MessageBox.Show("The application has been upgraded, and will now restart.");
                Application.Restart();
            }
            catch (DeploymentDownloadException dde)
            {
                MessageBox.Show("Cannot install the latest version of the application. Either the deployment server is unavailable, or your network connection is down. \n\nPlease check your network connection, or try again later. Error: " + dde.Message);
            }
            catch (TrustNotGrantedException tnge)
            {
                MessageBox.Show("The application cannot be updated. The system did not grant the application the appropriate level of trust. Please contact your system administrator or help desk for further troubleshooting. Error: " + tnge.Message);
            }
        }
    }
}

Remarks

A DeploymentDownloadException can indicate that a number of problems occurred when the user tried to download a ClickOnce application update:

  • The client's computer's network connection is down.

  • The Web server, FTP server, or file share hosting the update is unavailable.

  • One or more of the files in the ClickOnce deployment was not found.

To obtain detailed error information about an exception, consult the ClickOnce error log. For more information, see Troubleshooting ClickOnce Deployments.

Constructors

DeploymentDownloadException()

Initializes a new instance of the DeploymentDownloadException class.

DeploymentDownloadException(SerializationInfo, StreamingContext)

Initializes a new instance of the DeploymentDownloadException class.

DeploymentDownloadException(String, Exception)

Initializes a new instance of the DeploymentDownloadException class.

DeploymentDownloadException(String)

Initializes a new instance of the DeploymentDownloadException class with a message that describes the exception.

Methods

GetObjectData(SerializationInfo, StreamingContext)

Sets the SerializationInfo with information about the exception.

(Inherited from DeploymentException)

Applies to

Proizvod Verzije
.NET Framework 2.0, 3.0, 3.5, 4.0, 4.5, 4.5.1, 4.5.2, 4.6, 4.6.1, 4.6.2, 4.7, 4.7.1, 4.7.2, 4.8, 4.8.1

See also