다음을 통해 공유


HttpHandlerAction.Path 속성

정의

경로를 가져오거나 설정합니다 HttpHandlerAction .

public:
 property System::String ^ Path { System::String ^ get(); void set(System::String ^ value); };
[System.Configuration.ConfigurationProperty("path", IsKey=true, IsRequired=true)]
public string Path { get; set; }
[<System.Configuration.ConfigurationProperty("path", IsKey=true, IsRequired=true)>]
member this.Path : string with get, set
Public Property Path As String

속성 값

URL 경로입니다 HttpHandlerAction .

특성

예제

다음 코드 예제에서는 속성에 액세스 하는 방법을 보여 있습니다 Path .

// Change the Path for the HttpHandlerAction.
httpHandler.Path = "Calculator.custom";
' Change the Path for the HttpHandlerAction.
httpHandler.Path = "Calculator.custom"

설명

이 속성은 Path 단일 URL 또는 와일드카드 문자열을 포함할 수 있습니다.

적용 대상