InstallException コンストラクタ (String)
アセンブリ: System.Configuration.Install (system.configuration.install.dll 内)
構文
使用例
InstallException コンストラクタの例を次に示します。これは、InstallException クラスの例の一部です。
この例では、Installutil.exe が Uninstall メソッドを呼び出します。アンインストールは、FileDoesNotExist.txt という名前のファイルが存在する場合にだけ行われます。それ以外の場合は、InstallException が発生します。
メモ |
---|
InstallException コンストラクタのオーバーロードされたバージョンのいずれかの使用方法を次の例に示します。その他の例については、個々のオーバーロードのトピックを参照してください。 |
Public Overrides Sub Uninstall(savedState As IDictionary) MyBase.Uninstall(savedState) Console.WriteLine("UnInstall ...") ' Throw an error if a particular file doesn't exist. If Not File.Exists("FileDoesNotExist.txt") Then Throw New InstallException("The file 'FileDoesNotExist'" + " does not exist") End If ' Perform the uninstall activites if the file exists. End Sub
public override void Uninstall(IDictionary savedState) { base.Uninstall(savedState); Console.WriteLine("UnInstall ..."); // Throw an error if a particular file doesn't exist. if(!File.Exists("FileDoesNotExist.txt")) throw new InstallException("The file 'FileDoesNotExist'" + " does not exist"); // Perform the uninstall activites if the file exists. }
virtual void Uninstall( IDictionary^ savedState ) override { Installer::Uninstall( savedState ); Console::WriteLine( "UnInstall ..." ); // Throw an error if a particular file doesn't exist. if ( !File::Exists( "FileDoesNotExist.txt" ) ) throw gcnew InstallException( "The file 'FileDoesNotExist' does not exist" ); // Perform the uninstall activites if the file exists. }
public void Uninstall(IDictionary savedState) throws System.Configuration.Install.InstallException { super.Uninstall(savedState); Console.WriteLine("UnInstall ..."); // Throw an error if a particular file doesn't exist. if (!(File.Exists("FileDoesNotExist.txt"))) { throw new InstallException("The file 'FileDoesNotExist'" + " does not exist"); } } //Uninstall
プラットフォーム
Windows 98, Windows 2000 SP4, Windows Millennium Edition, Windows Server 2003, Windows XP Media Center Edition, Windows XP Professional x64 Edition, Windows XP SP2, Windows XP Starter Edition
開発プラットフォームの中には、.NET Framework によってサポートされていないバージョンがあります。サポートされているバージョンについては、「システム要件」を参照してください。
参照
InstallException コンストラクタ (SerializationInfo, StreamingContext)
アセンブリ: System.Configuration.Install (system.configuration.install.dll 内)
構文
Dim info As SerializationInfo Dim context As StreamingContext Dim instance As New InstallException(info, context)
プラットフォーム
Windows 98, Windows 2000 SP4, Windows Millennium Edition, Windows Server 2003, Windows XP Media Center Edition, Windows XP Professional x64 Edition, Windows XP SP2, Windows XP Starter Edition
開発プラットフォームの中には、.NET Framework によってサポートされていないバージョンがあります。サポートされているバージョンについては、「システム要件」を参照してください。
参照
InstallException コンストラクタ (String, Exception)
アセンブリ: System.Configuration.Install (system.configuration.install.dll 内)
構文
Dim message As String Dim innerException As Exception Dim instance As New InstallException(message, innerException)
プラットフォーム
Windows 98, Windows 2000 SP4, Windows Millennium Edition, Windows Server 2003, Windows XP Media Center Edition, Windows XP Professional x64 Edition, Windows XP SP2, Windows XP Starter Edition
開発プラットフォームの中には、.NET Framework によってサポートされていないバージョンがあります。サポートされているバージョンについては、「システム要件」を参照してください。
参照
InstallException コンストラクタ
オーバーロードの一覧
名前 | 説明 |
---|---|
InstallException () | InstallException クラスの新しいインスタンスを初期化します。 |
InstallException (String) | InstallException クラスの新しいインスタンスを初期化し、ユーザーに表示するメッセージを指定します。 |
InstallException (SerializationInfo, StreamingContext) | シリアル化したデータを使用して、InstallException クラスの新しいインスタンスを初期化します。 |
InstallException (String, Exception) | InstallException クラスの新しいインスタンスを初期化します。ユーザーに表示するメッセージ、およびこの例外の原因である内部例外への参照を指定します。 |
InstallException コンストラクタ ()
アセンブリ: System.Configuration.Install (system.configuration.install.dll 内)
構文
使用例
InstallException コンストラクタの例を次に示します。これは、InstallException クラスの例の一部です。
この例では、Installutil.exe が Commit メソッドを呼び出します。Commit のコードは、アセンブリのインストールがコミットされる前に、FileDoesNotExist.txt という名前のファイルが存在すると仮定しています。ファイル FileDoesNotExist.txt が存在しない場合、Commit は、InstallException を発生させます。
メモ |
---|
InstallException コンストラクタのオーバーロードされたバージョンのいずれかの使用方法を次の例に示します。その他の例については、個々のオーバーロードのトピックを参照してください。 |
Public Overrides Sub Commit(savedState As IDictionary) MyBase.Commit(savedState) Console.WriteLine("Commit ...") ' Throw an error if a particular file doesn't exist. If Not File.Exists("FileDoesNotExist.txt") Then Throw New InstallException() End If ' Perform the final installation if the file exists. End Sub
public override void Commit(IDictionary savedState) { base.Commit(savedState); Console.WriteLine("Commit ..."); // Throw an error if a particular file doesn't exist. if(!File.Exists("FileDoesNotExist.txt")) throw new InstallException(); // Perform the final installation if the file exists. }
virtual void Commit( IDictionary^ savedState ) override { Installer::Commit( savedState ); Console::WriteLine( "Commit ..." ); // Throw an error if a particular file doesn't exist. if ( !File::Exists( "FileDoesNotExist.txt" ) ) throw gcnew InstallException; // Perform the final installation if the file exists. }
public void Commit(IDictionary savedState) throws System.Configuration.Install.InstallException { super.Commit(savedState); Console.WriteLine("Commit ..."); // Throw an error if a particular file doesn't exist. if (!(File.Exists("FileDoesNotExist.txt"))) { throw new InstallException(); } // Perform the final installation if the file exists. } //Commit
プラットフォーム
Windows 98, Windows 2000 SP4, Windows Millennium Edition, Windows Server 2003, Windows XP Media Center Edition, Windows XP Professional x64 Edition, Windows XP SP2, Windows XP Starter Edition
開発プラットフォームの中には、.NET Framework によってサポートされていないバージョンがあります。サポートされているバージョンについては、「システム要件」を参照してください。
参照
- InstallException コンストラクタのページへのリンク