다음을 통해 공유


HttpRequest.Url 속성

정의

현재 요청의 URL에 대한 정보를 가져옵니다.

public:
 property Uri ^ Url { Uri ^ get(); };
public Uri Url { get; }
member this.Url : Uri
Public ReadOnly Property Url As Uri

속성 값

Uri

현재 요청의 URL이 포함된 Uri 개체입니다.

예제

다음 코드 예제에서는 현재 요청의 개체를 개체 변수에 할당 Uri 하고 URL 개체의 두 속성 값을 HTTP 출력에 표시합니다.

Uri MyUrl = Request.Url;
 Response.Write("URL Port: " + MyUrl.Port + "<br>");
 Response.Write("URL Protocol: " + Server.HtmlEncode(MyUrl.Scheme) + "<br>");

Dim MyUrl As Uri = Request.Url
 Response.Write("URL Port: " & MyUrl.Port & "<br>")
 Response.Write("URL Protocol: " & Server.HtmlEncode(MyUrl.Scheme) & "<br>")

적용 대상

추가 정보