Sdílet prostřednictvím


InstallContext.IsParameterTrue(String) Metoda

Definice

Určuje, jestli je truezadaný parametr příkazového řádku .

public:
 bool IsParameterTrue(System::String ^ paramName);
public bool IsParameterTrue (string paramName);
member this.IsParameterTrue : string -> bool
Public Function IsParameterTrue (paramName As String) As Boolean

Parametry

paramName
String

Název parametru příkazového řádku, který chcete zkontrolovat.

Návraty

truepokud je zadaný parametr nastaven na "yes", "true", "1" nebo prázdný řetězec ("""); v opačném případě . false

Příklady

Tento příklad je výňatkem z ukázky v přehledu InstallContext třídy .

IsParameterTrue Pomocí metody zjistí, jestli LogtoConsole byl parametr nastaven. Pokud yes, použije metodu k zápisu LogMessage stavových zpráv do souboru protokolu instalace a konzoly.

// Check whether the "LogtoConsole" parameter has been set.
if ( myInstallContext->IsParameterTrue( "LogtoConsole" ) )
{
   // Display the message to the console and add it to the logfile.
   myInstallContext->LogMessage( "The 'Install' method has been called" );
}
// Check whether the "LogtoConsole" parameter has been set.
if( myInstallContext.IsParameterTrue( "LogtoConsole" ) == true )
{
   // Display the message to the console and add it to the logfile.
   myInstallContext.LogMessage( "The 'Install' method has been called" );
}
' Check wether the "LogtoConsole" parameter has been set.
If myInstallContext.IsParameterTrue("LogtoConsole") = True Then
   ' Display the message to the console and add it to the logfile.
   myInstallContext.LogMessage("The 'Install' method has been called")
End If

Poznámky

Tato metoda přistupuje Parameters k vlastnosti, která obsahuje parsovanou verzi parametrů příkazového řádku, a určí, zda je truezadaný parametr .

Platí pro

Viz také