ConfigurationPathType 열거형
정의
중요
일부 정보는 릴리스되기 전에 상당 부분 수정될 수 있는 시험판 제품과 관련이 있습니다. Microsoft는 여기에 제공된 정보에 대해 어떠한 명시적이거나 묵시적인 보증도 하지 않습니다.
선택한 구성 경로의 유형을 지정합니다.
public enum class ConfigurationPathType
public enum ConfigurationPathType
type ConfigurationPathType =
Public Enum ConfigurationPathType
- 상속
-
ConfigurationPathType
필드
Application | 2 | 애플리케이션 |
File | 4 | 애플리케이션의 파일입니다. |
Folder | 3 | 애플리케이션 폴더입니다. |
Server | 0 | 서버입니다. |
Site | 1 | 사이트입니다. |
예제
다음 예제에서는 연결 창에서 선택한 개체에 대한 열거형 값을 가져옵니다ConfigurationPathType.
// Called when an object in the hierarchy pane is activated.
protected override void OnActivated(bool initialActivation)
{
base.OnActivated(initialActivation);
if (initialActivation)
{
_serviceProxy = (DemoModuleServiceProxy)Connection.CreateProxy(
Module, typeof(DemoModuleServiceProxy));
// Display the Configuration Path Type enumertion.
MessageBox.Show("The selected object in the hierarchy pane is a " +
Connection.ConfigurationPath.PathType);
Refresh();
}
}
설명
열거형 값을 사용하여 선택한 구성 경로 형식으로 표시되는 연결 유형을 확인할 수 있습니다. 속성에서 열거형 값에 PathType 액세스할 수 있습니다.