InstallContext.IsParameterTrue(String) 메서드
정의
중요
일부 정보는 릴리스되기 전에 상당 부분 수정될 수 있는 시험판 제품과 관련이 있습니다. Microsoft는 여기에 제공된 정보에 대해 어떠한 명시적이거나 묵시적인 보증도 하지 않습니다.
지정한 명령줄 매개 변수가 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
합니다.
적용 대상
추가 정보
GitHub에서 Microsoft와 공동 작업
이 콘텐츠의 원본은 GitHub에서 찾을 수 있으며, 여기서 문제와 끌어오기 요청을 만들고 검토할 수도 있습니다. 자세한 내용은 참여자 가이드를 참조하세요.
.NET