Installer.Install メソッド
アセンブリ: System.Configuration.Install (system.configuration.install.dll 内)




Installer クラスの Install メソッドの例を次に示します。Installer 基本クラスからクラスが派生され、Install メソッドがオーバーライドされます。
' Override the 'Install' method of the Installer class. Public Overrides Sub Install(mySavedState As IDictionary) MyBase.Install(mySavedState) ' Code maybe written for installation of an application. Console.WriteLine("The Install method of 'MyInstallerSample' has been called") End Sub 'Install
// Override the 'Install' method of the Installer class. public override void Install( IDictionary mySavedState ) { base.Install( mySavedState ); // Code maybe written for installation of an application. Console.WriteLine( "The Install method of 'MyInstallerSample' has been called" ); }
// Override the 'Install' method of the Installer class. public: virtual void Install( IDictionary^ mySavedState ) override { Installer::Install( mySavedState ); // Code maybe written for installation of an application. Console::WriteLine( "The Install method of 'MyInstallerSample' has been called" ); }


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 によってサポートされていないバージョンがあります。サポートされているバージョンについては、「システム要件」を参照してください。


Weblioに収録されているすべての辞書からInstaller.Install メソッドを検索する場合は、下記のリンクをクリックしてください。

- Installer.Install メソッドのページへのリンク