Switch 생성자
정의
중요
일부 정보는 릴리스되기 전에 상당 부분 수정될 수 있는 시험판 제품과 관련이 있습니다. Microsoft는 여기에 제공된 정보에 대해 어떠한 명시적이거나 묵시적인 보증도 하지 않습니다.
Switch 클래스의 새 인스턴스를 초기화합니다.
오버로드
Switch(String, String) |
Switch 클래스의 새 인스턴스를 초기화합니다. |
Switch(String, String, String) |
Switch 클래스의 새 인스턴스를 초기화하고 스위치의 표시 이름, 설명 및 기본값을 지정합니다. |
Switch(String, String)
- Source:
- Switch.cs
- Source:
- Switch.cs
- Source:
- Switch.cs
Switch 클래스의 새 인스턴스를 초기화합니다.
protected:
Switch(System::String ^ displayName, System::String ^ description);
protected Switch (string displayName, string? description);
protected Switch (string displayName, string description);
new System.Diagnostics.Switch : string * string -> System.Diagnostics.Switch
Protected Sub New (displayName As String, description As String)
매개 변수
- displayName
- String
스위치의 이름입니다.
- description
- String
스위치에 대한 설명입니다.
설명
새 Switch 개체를 만들 때 매개 변수의 displayName
값은 초기 스위치 설정을 찾는 데 사용됩니다. 기본값은 빈 문자열("")입니다.
.NET Framework 앱의 XML 구성 파일 내에서 스위치를 추가하고 해당 값을 설정하거나, 스위치를 제거하거나, 애플리케이션에서 이전에 설정한 모든 스위치를 지울 수 있습니다. 애플리케이션이 실행 되는 동안에 구성 파일에 동적 변경 내용은 검색 되지 않습니다. 중지 하 고 구성 파일에 변경 내용을 적용 하려면 애플리케이션을 다시 시작 해야 합니다. 다음 예제와 같이 구성 파일의 형식은 해야 합니다.
<configuration>
<system.diagnostics>
<switches>
<add name="mySwitch" value="10" />
<add name="myNewSwitch" value="20" />
<remove name="mySwitch" />
<clear/>
</switches>
</system.diagnostics>
</configuration>
상속자 참고
스위치 값을 설정하려면 생성자에서 속성을 설정합니다 SwitchSetting .
추가 정보
적용 대상
Switch(String, String, String)
- Source:
- Switch.cs
- Source:
- Switch.cs
- Source:
- Switch.cs
Switch 클래스의 새 인스턴스를 초기화하고 스위치의 표시 이름, 설명 및 기본값을 지정합니다.
protected:
Switch(System::String ^ displayName, System::String ^ description, System::String ^ defaultSwitchValue);
protected Switch (string displayName, string? description, string? defaultSwitchValue);
protected Switch (string displayName, string? description, string defaultSwitchValue);
protected Switch (string displayName, string description, string defaultSwitchValue);
new System.Diagnostics.Switch : string * string * string -> System.Diagnostics.Switch
Protected Sub New (displayName As String, description As String, defaultSwitchValue As String)
매개 변수
- displayName
- String
스위치의 이름입니다.
- description
- String
스위치에 대한 설명입니다.
- defaultSwitchValue
- String
스위치의 기본값입니다.
설명
displayName
매개 변수 값을 설정 하는 합니다 DisplayName 속성 및 description
매개 변수 값을 설정 하는 데 사용 됩니다는 Description 속성입니다. defaultSwitchValue
속성이 코드 또는 구성 파일 특성에 의해 설정되지 않은 경우 Value 매개 변수는 스위치의 값입니다. Switch(String, String) 자세한 내용은 오버로드를 참조하세요.
적용 대상
.NET