InstallContext.IsParameterTrue(String) Metodo
Definizione
Importante
Alcune informazioni sono relative alla release non definitiva del prodotto, che potrebbe subire modifiche significative prima della release definitiva. Microsoft non riconosce alcuna garanzia, espressa o implicita, in merito alle informazioni qui fornite.
Determina se il parametro della riga di comando specificato è true
.
public:
bool IsParameterTrue(System::String ^ paramName);
public bool IsParameterTrue (string paramName);
member this.IsParameterTrue : string -> bool
Public Function IsParameterTrue (paramName As String) As Boolean
Parametri
- paramName
- String
Nome del parametro della riga di comando da verificare.
Restituisce
true
se il parametro specificato è impostato su "yes", "true", "1" oppure su una stringa vuota (""), in caso contrario false
.
Esempio
Questo esempio è un estratto dell'esempio nella panoramica della InstallContext classe .
Usa il IsParameterTrue metodo per verificare se il LogtoConsole
parametro è stato impostato. Se yes
, userà quindi il LogMessage metodo per scrivere messaggi di stato nel file di log di installazione e nella console.
// 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
Commenti
Questo metodo accede alla Parameters proprietà , che contiene una versione analizzata dei parametri della riga di comando, per determinare se il parametro specificato è true
.