Application.ComponentStorePath 속성

정의

파이프라인 구성 요소가 저장된 경로를 반환합니다. 이 속성은 읽기 전용입니다.

public:
 property System::String ^ ComponentStorePath { System::String ^ get(); };
public string ComponentStorePath { get; }
member this.ComponentStorePath : string
Public ReadOnly Property ComponentStorePath As String

속성 값

파이프라인 구성 요소의 위치를 나타내는 문자열입니다.

예제

다음 예제에서는 일반적으로 C:\Program Files\Microsoft SQL Server\100\DTS인 파이프라인 구성 요소의 경로를 반환합니다.

class ApplicationTests
    {
        static void Main(string[] args)
        {
            Application app = new Application();
            String pipelinecomp = app.ComponentStorePath;
            Console.WriteLine(pipelinecomp);
        }
    }
Class ApplicationTests
        Sub Main(ByVal args() As String)
            Dim app As Application =  New Application() 
            Dim pipelinecomp As String =  app.ComponentStorePath 
            Console.WriteLine(pipelinecomp)
        End Sub
End Class

적용 대상