次の方法で共有


AssemblyInstaller.Install(IDictionary) メソッド

定義

インストールを実行します。

public:
 override void Install(System::Collections::IDictionary ^ savedState);
public override void Install (System.Collections.IDictionary savedState);
override this.Install : System.Collections.IDictionary -> unit
Public Overrides Sub Install (savedState As IDictionary)

パラメーター

savedState
IDictionary

IDictionaryは、コミット、ロールバック、またはアンインストール操作を実行するために必要な情報を保存するために使用されます。

例外

savedState パラメーターが null です。

- または -

ファイルが見つかりませんでした。

コレクション内にあるインストーラーのうちの 1 つのインストーラーの BeforeInstall イベント ハンドラーで例外が発生しました。

- または -

コレクション内にあるインストーラーのうちの 1 つのインストーラーの AfterInstall イベント ハンドラーで例外が発生しました。

- または -

アセンブリのうちの 1 つで、インストーラーの型が見つかりませんでした。

- または -

インストーラーの型のうちの 1 つについて、インスタンスを作成できませんでした。

次の例では、 クラスの AssemblyInstaller コンストラクターと メソッド InstallCommit メソッドを AssemblyInstaller 示します。

クラスの AssemblyInstaller オブジェクトは、 コンストラクターを AssemblyInstaller 呼び出すことによって作成されます。 このオブジェクトのプロパティが設定され、 Install メソッドと Commit メソッドが呼び出され、'MyAssembly_Install.exe' アセンブリがインストールされます。

#using <System.dll>
#using <System.Configuration.Install.dll>

using namespace System;
using namespace System::Configuration::Install;
using namespace System::Collections;
using namespace System::Collections::Specialized;
void main()
{
   IDictionary^ mySavedState = gcnew Hashtable;
   Console::WriteLine( "" );
   try
   {
      // Set the commandline argument array for 'logfile'.
      array<String^>^myString = {"/logFile=example.log"};
      
      // Create an Object* of the 'AssemblyInstaller' class.
      AssemblyInstaller^ myAssemblyInstaller = gcnew AssemblyInstaller;

      // Set the properties to install the required assembly.
      myAssemblyInstaller->Path = "MyAssembly_Install.exe";
      myAssemblyInstaller->CommandLine = myString;
      myAssemblyInstaller->UseNewContext = true;
      
      // Clear the 'IDictionary' Object*.
      mySavedState->Clear();
      
      // Install the 'MyAssembly_Install' assembly.
      myAssemblyInstaller->Install( mySavedState );
      
      // Commit the 'MyAssembly_Install' assembly.
      myAssemblyInstaller->Commit( mySavedState );
   }
   catch ( Exception^ e ) 
   {
      Console::WriteLine( e );
   }
}
using System;
using System.Configuration.Install;
using System.Collections;
using System.Collections.Specialized;

class MyInstallClass
{
   static void Main()
   {
      IDictionary mySavedState = new Hashtable();

      Console.WriteLine( "" );

      try
      {
         // Set the commandline argument array for 'logfile'.
         string[] myString = new string[ 1 ];
         myString[ 0 ] = "/logFile=example.log";

         // Create an object of the 'AssemblyInstaller' class.
         AssemblyInstaller myAssemblyInstaller = new AssemblyInstaller();

         // Set the properties to install the required assembly.
         myAssemblyInstaller.Path = "MyAssembly_Install.exe";
         myAssemblyInstaller.CommandLine = myString;
         myAssemblyInstaller.UseNewContext = true;

         // Clear the 'IDictionary' object.
         mySavedState.Clear();

         // Install the 'MyAssembly_Install' assembly.
         myAssemblyInstaller.Install( mySavedState );

         // Commit the 'MyAssembly_Install' assembly.
         myAssemblyInstaller.Commit( mySavedState );
      }
      catch( Exception )
      {
      }
   }
}
Imports System.Configuration.Install
Imports System.Collections
Imports System.Collections.Specialized

Class MyInstallClass
   
   Shared Sub Main()
      Dim mySavedState = New Hashtable()
      
      Console.WriteLine("")
      

      Try
         ' Set the commandline argument array for 'logfile'.
         Dim myString(0) As String
         myString(0) = "/logFile=example.log"
         ' Create an object of the 'AssemblyInstaller' class.
         Dim myAssemblyInstaller As New AssemblyInstaller()
         ' Set the properties to install the required assembly.
         myAssemblyInstaller.Path = "MyAssembly_Install.exe"
         myAssemblyInstaller.CommandLine = myString
         myAssemblyInstaller.UseNewContext = True
         
         ' Clear the 'IDictionary' object.
         mySavedState.Clear()
         
         ' Install the 'MyAssembly_Install' assembly.
         myAssemblyInstaller.Install(mySavedState)
         
         ' Commit the 'MyAssembly_Install' assembly.
         myAssemblyInstaller.Commit(mySavedState)
      Catch
      End Try

   End Sub
End Class

注釈

このメソッドは、 Install このインスタンスの プロパティに含まれる各インストーラーの メソッドを Installers 呼び出します。 IDictionaryパラメーターでsavedState指定されたオブジェクトは、包含インストーラーの実行後のインストールの状態を反映するように更新されます。 すべてのメソッドが Install 成功すると、 Commit メソッドが呼び出されます。 それ以外の場合は、 メソッドが Rollback 呼び出されます。

注意 (呼び出し元)

IDictionaryパラメーターで指定された はsavedState、 メソッドに渡されるときに空にするInstall(IDictionary)必要があります。

適用対象