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

속성 값

String

HttpHandlerAction URL 경로입니다.

특성

예제

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

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

설명

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

적용 대상