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 はローカル以外です。

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

適用対象