IUrlHelper.IsLocalUrl(String) Methode

Definition

Gibt einen Wert zurück, der angibt, ob die URL lokal ist. Eine URL gilt als lokal, wenn sie keinen Host-/Autoritätsteil und einen absoluten Pfad aufweist. URLs, die virtuelle Pfade ('~/') verwenden, sind ebenfalls lokal.

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

Parameter

url
String

Die URL.

Gibt zurück

true , wenn die URL lokal ist; falseandernfalls .

Beispiele

Beispielsweise werden die folgenden URLs als lokal betrachtet:

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

Die folgenden URLs sind nicht lokal:

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

Gilt für: