InstallContext.IsParameterTrue(String) Metode
Definisi
Penting
Beberapa informasi terkait produk prarilis yang dapat diubah secara signifikan sebelum dirilis. Microsoft tidak memberikan jaminan, tersirat maupun tersurat, sehubungan dengan informasi yang diberikan di sini.
Menentukan apakah parameter baris perintah yang ditentukan adalah 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
Parameter
- paramName
- String
Nama parameter baris perintah untuk diperiksa.
Mengembalikan
true
jika parameter yang ditentukan diatur ke "ya", "true", "1", atau string kosong (""); jika tidak, false
.
Contoh
Contoh ini adalah kutipan sampel dalam gambaran InstallContext umum kelas.
Ini menggunakan IsParameterTrue metode untuk mengetahui apakah LogtoConsole
parameter telah ditetapkan. Jika yes
, maka akan menggunakan LogMessage metode untuk menulis pesan status ke file log penginstalan dan konsol.
// 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
Keterangan
Metode ini mengakses Parameters properti , yang berisi versi parameter baris perintah yang diurai, untuk menentukan apakah parameter yang ditentukan adalah true
.