다음을 통해 공유


IUrlHelper.IsLocalUrl(String) 메서드

정의

URL이 로컬인지를 나타내는 값을 반환합니다. URL은 호스트/기관 부분이 없으며 절대 경로가 있는 경우 로컬로 간주됩니다. 가상 경로('~/')를 사용하는 URL도 로컬입니다.

public:
 bool IsLocalUrl(System::String ^ url);
public bool IsLocalUrl (string url);
public bool IsLocalUrl (string? url);
abstract member IsLocalUrl : string -> bool
Public Function IsLocalUrl (url As String) As Boolean

매개 변수

url
String

URL입니다.

반환

true URL이 로컬이면 이고, 그렇지 않으면 입니다 false.

예제

예를 들어 다음 URL은 로컬로 간주됩니다.

/Views/Default/Index.html
~/Index.html

다음 URL은 로컬이 아닌 URL입니다.

../Index.html
http://www.contoso.com/
http://localhost/Index.html

적용 대상