UpdateCheckInfoとは? わかりやすく解説

UpdateCheckInfo クラス

メモ : このクラスは、.NET Framework version 2.0新しく追加されたものです。

CheckForDetailedUpdate の呼び出しによって取得した詳細な更新情報表します

名前空間: System.Deployment.Application
アセンブリ: System.Deployment (system.deployment.dll 内)
構文構文

Public Class UpdateCheckInfo
Dim instance As UpdateCheckInfo
public class UpdateCheckInfo
public ref class UpdateCheckInfo
public class UpdateCheckInfo
public class UpdateCheckInfo
解説解説
使用例使用例

UpdateAvailable使用してアプリケーション新し更新存在するかどうか判断しIsUpdateRequired使用してユーザー更新インストールするように要求するかどうか判断する方法次のコード例示します

Private Sub InstallUpdateSyncWithInfo()
    Dim info As UpdateCheckInfo = Nothing

    If (ApplicationDeployment.IsNetworkDeployed) Then
        Dim AD As ApplicationDeployment = ApplicationDeployment.CurrentDeployment

        Try
            info = AD.CheckForDetailedUpdate()
        Catch dde As DeploymentDownloadException
            MessageBox.Show("The new version of the application
 cannot be downloaded at this time. " + ControlChars.Lf + ControlChars.Lf
 + "Please check your network connection, or try again later. Error: " + dde.Message)
            Return
        Catch ioe As InvalidOperationException
            MessageBox.Show("This application cannot be updated.
 It is likely not a ClickOnce application. Error: " + ioe.Message)
            Return
        End Try

        If (info.UpdateAvailable) Then
            Dim doUpdate As Boolean
 = True

            If (Not info.IsUpdateRequired)
 Then
                Dim dr As DialogResult = MessageBox.Show("An
 update is available. Would you like to update the application now?",
 "Update Available", MessageBoxButtons.OKCancel)
                If (Not System.Windows.Forms.DialogResult.OK
 = dr) Then
                    doUpdate = False
                End If
            End If

            If (doUpdate) Then
                Try
                    AD.Update()
                    MessageBox.Show("The application has been
 upgraded, and will now restart.")
                    Application.Restart()
                Catch dde As DeploymentDownloadException
                    MessageBox.Show("Cannot install the latest
 version of the application. " + ControlChars.Lf + ControlChars.Lf +
 "Please check your network connection, or try again later.")
                    Return
                End Try
            End If
        End If
    End If
End Sub
private void InstallUpdateSyncWithInfo()
{
    UpdateCheckInfo info = null;

    if (ApplicationDeployment.IsNetworkDeployed)
    {
        ApplicationDeployment ad = ApplicationDeployment.CurrentDeployment;

        try
        {
            info = ad.CheckForDetailedUpdate();

        }
        catch (DeploymentDownloadException dde)
        {
            MessageBox.Show("The new version of the application
 cannot be downloaded at this time. \n\nPlease check your network
 connection, or try again later. Error: " + dde.Message);
            return;
        }
        catch (InvalidDeploymentException ide)
        {
            MessageBox.Show("Cannot check for a new
 version of the application. The ClickOnce deployment is corrupt. Please redeploy
 the application and try again. Error: " + ide.Message);
            return;
        }
        catch (InvalidOperationException ioe)
        {
            MessageBox.Show("This application cannot be updated. It is likely
 not a ClickOnce application. Error: " + ioe.Message);
            return;
        }

        if (info.UpdateAvailable)
        {
            Boolean doUpdate = true;

            if (!info.IsUpdateRequired)
            {
                DialogResult dr = MessageBox.Show("An update is available. Would
 you like to update the application now?", "Update Available", MessageBoxButtons.OKCancel);
                if (!(DialogResult.OK == dr))
                {
                    doUpdate = false;
                }
            }

            if (doUpdate)
            {
                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. \n\nPlease check your network connection, or try
 again later. Error: " + dde);
                    return;
                }
            }
        }
    }
}
public:
    void InstallUpdateSync()
    {
        if (ApplicationDeployment::IsNetworkDeployed)
        {
            bool isUpdateAvailable = false;
            ApplicationDeployment^ appDeployment =
                ApplicationDeployment::CurrentDeployment;

            try
            {
                isUpdateAvailable = appDeployment->CheckForUpdate();
            }
            catch (InvalidOperationException^ ex)
            {
                MessageBox::Show("The update check failed. Error: {0}"
,
                    ex->Message);
                return;
            }

            if (isUpdateAvailable)
            {
                try
                {
                    appDeployment->Update();
                    MessageBox::Show(
                        "The application has been upgraded, and will now "
 +
                        "restart.");
                    Application::Restart();
                }
                catch (Exception^ ex)
                {
                    MessageBox::Show("The update failed. Error: {0}",
                        ex->Message);
                    return;
                }

            }
        }
    }
継承階層継承階層
System.Object
  System.Deployment.Application.UpdateCheckInfo
スレッド セーフスレッド セーフ
この型の public static (Visual Basic では Shared) メンバはすべて、スレッド セーフです。インスタンス メンバ場合は、スレッド セーフであるとは限りません。
プラットフォームプラットフォーム
バージョン情報バージョン情報
参照参照
関連項目
UpdateCheckInfo メンバ
System.Deployment.Application 名前空間

UpdateCheckInfo プロパティ


パブリック プロパティパブリック プロパティ

参照参照

関連項目

UpdateCheckInfo クラス
System.Deployment.Application 名前空間

UpdateCheckInfo メソッド


UpdateCheckInfo メンバ

CheckForDetailedUpdate の呼び出しによって取得した詳細な更新情報表します

UpdateCheckInfo データ型公開されるメンバを以下の表に示します


パブリック プロパティパブリック プロパティ
パブリック メソッドパブリック メソッド
プロテクト メソッドプロテクト メソッド
参照参照

関連項目

UpdateCheckInfo クラス
System.Deployment.Application 名前空間



英和和英テキスト翻訳>> Weblio翻訳
英語⇒日本語日本語⇒英語
  

辞書ショートカット

すべての辞書の索引

「UpdateCheckInfo」の関連用語

UpdateCheckInfoのお隣キーワード
検索ランキング

   

英語⇒日本語
日本語⇒英語
   



UpdateCheckInfoのページの著作権
Weblio 辞書 情報提供元は 参加元一覧 にて確認できます。

   
日本マイクロソフト株式会社日本マイクロソフト株式会社
© 2025 Microsoft.All rights reserved.

©2025 GRAS Group, Inc.RSS