AssemblyInstaller.CheckIfInstallable(String) Metoda
Definicja
Ważne
Niektóre informacje odnoszą się do produktu w wersji wstępnej, który może zostać znacząco zmodyfikowany przed wydaniem. Firma Microsoft nie udziela żadnych gwarancji, jawnych lub domniemanych, w odniesieniu do informacji podanych w tym miejscu.
Sprawdza, czy można zainstalować określony zestaw.
public:
static void CheckIfInstallable(System::String ^ assemblyName);
public static void CheckIfInstallable (string assemblyName);
static member CheckIfInstallable : string -> unit
Public Shared Sub CheckIfInstallable (assemblyName As String)
Parametry
- assemblyName
- String
Zestaw, w którym należy wyszukać instalatory.
Wyjątki
Nie można zainstalować określonego zestawu.
Przykłady
W poniższym przykładzie CheckIfInstallable metoda jest stosowana zarówno do istniejącego, jak i nieistniejącego zestawu, a wyniki wywołania są wyświetlane w konsoli.
#using <System.dll>
#using <System.Configuration.Install.dll>
using namespace System;
using namespace System::Configuration::Install;
int main()
{
try
{
// Determine whether the assembly 'MyAssembly' is installable.
AssemblyInstaller::CheckIfInstallable( "MyAssembly_CheckIfInstallable.exe" );
Console::WriteLine( "The assembly 'MyAssembly_CheckIfInstallable' is installable" );
// Determine whether the assembly 'NonExistant' is installable.
AssemblyInstaller::CheckIfInstallable( "NonExistant" );
}
catch ( Exception^ e )
{
Console::WriteLine( e );
}
}
using System;
using System.Configuration.Install;
class MyCheckIfInstallableClass:Installer
{
static void Main()
{
try
{
// Determine whether the assembly 'MyAssembly' is installable.
AssemblyInstaller.CheckIfInstallable( "MyAssembly_CheckIfInstallable.exe" );
Console.WriteLine( "The assembly 'MyAssembly_CheckIfInstallable' is installable" );
// Determine whether the assembly 'NonExistant' is installable.
AssemblyInstaller.CheckIfInstallable( "NonExistant" );
}
catch( Exception )
{
}
}
}
Imports System.Configuration.Install
Class MyCheckIfInstallableClass
Shared Sub Main()
Try
' Determine whether the assembly 'MyAssembly' is installable.
AssemblyInstaller.CheckIfInstallable("MyAssembly_CheckIfInstallable.exe")
Console.WriteLine("The assembly 'MyAssembly_CheckIfInstallable' is installable")
' Determine whether the assembly 'NonExistant' is installable.
AssemblyInstaller.CheckIfInstallable("NonExistant")
Catch
End Try
End Sub
End Class
Uwagi
Metoda CheckIfInstallable określa, czy można zainstalować określony zestaw. Aby uniknąć zgłaszania wyjątku, plik musi spełniać następujące kryteria:
Plik istnieje.
Plik jest zestawem .NET Framework.
Typy publiczne mogą być odczytywane z pliku.
Istnieje co najmniej jedna publiczna, nie abstrakcyjna klasa, która rozszerza klasę InstallerYes i zawiera atrybut.
Można utworzyć wystąpienie każdego instalatora.
Uwaga
Jeśli zestaw jest prawidłowy, ale nie zawiera instalatorów, zgłaszany jest wyjątek. To zachowanie różni się od tego w czasie instalacji, gdy nie jest to błąd podczas instalowania pustego zestawu.