다음을 통해 공유


InstallContext.IsParameterTrue(String) 메서드

정의

지정한 명령줄 매개 변수가 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

매개 변수

paramName
String

확인할 명령줄 매개 변수의 이름입니다.

반환

지정한 매개 변수가 "yes", "true", "1" 또는 빈 문자열("")로 설정되어 있으면 true이고, 그렇지 않으면 false입니다.

예제

이 예제는 클래스 개요에서 샘플의 일부는 InstallContext 클래스입니다.

사용 하 여는 IsParameterTrue 있는지 확인 하는 방법은 LogtoConsole 매개 변수가 설정 되어 있습니다. 경우 yes, 다음을 사용할지는 LogMessage 설치 로그 파일 및 콘솔에 상태 메시지를 작성 하는 방법입니다.

// 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

설명

액세스 하는이 메서드는 Parameters 지정된 된 매개 변수 인지 여부를 결정 하는 명령줄 매개 변수를 구문 분석 된 버전을 포함 하는 속성 true합니다.

적용 대상

추가 정보