다음을 통해 공유


WebRequestInformation.RequestPath 속성

정의

웹 요청의 실제 경로를 가져옵니다.

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

속성 값

String

요청의 실제 경로입니다.

예제

다음 코드 예제에는 웹 요청 경로 가져오는 방법을 보여 줍니다.

// Get the request path.
public string GetRequestPath()
{
    // Get the request path.
    return (string.Format(
        "Request path: {0}",
        RequestInformation.RequestPath));
}
' Get the request path.
Public Function GetRequestPath() As String
   ' Get the request path.
     Return String.Format( _
     "Request path: {0}", RequestInformation.RequestPath)
End Function 'GetRequestPath

적용 대상