Aracılığıyla paylaş


UrlHelperExtensions.RouteUrl Yöntem

Tanım

Aşırı Yüklemeler

RouteUrl(IUrlHelper, String, Object, String, String)

Belirtilen yol ve yol routeNamevaluesiçin mutlak yola sahip bir URL oluşturur. Bu url, kullanılacak ve host adlandırılan öğesini protocol içerir. ve Host değilsenull mutlak bir URL Protocol oluşturur. Önemli güvenlik bilgileri için açıklamalar bölümüne bakın.

RouteUrl(IUrlHelper, Object)

Belirtilen yol valuesiçin mutlak yola sahip bir URL oluşturur.

RouteUrl(IUrlHelper, String)

Belirtilen routeNameiçin mutlak yola sahip bir URL oluşturur.

RouteUrl(IUrlHelper, String, Object)

Belirtilen routeName ve yolu valuesiçin mutlak yol içeren bir URL oluşturur.

RouteUrl(IUrlHelper, String, Object, String)

Kullanılacak belirtilen yolu içeren protocol belirtilen yol routeName ve yol valuesiçin mutlak yola sahip bir URL oluşturur. Önemli güvenlik bilgileri için açıklamalar bölümüne bakın.

RouteUrl(IUrlHelper, String, Object, String, String, String)

Belirtilen host yol ve yol routeName için kullanılacak belirtilen ad ve fragmentyolunu valuesiçeren protocol mutlak yola sahip bir URL oluşturur. ve Host değilsenull mutlak bir URL Protocol oluşturur. Önemli güvenlik bilgileri için açıklamalar bölümüne bakın.

RouteUrl(IUrlHelper, String, Object, String, String)

Kaynak:
UrlHelperExtensions.cs
Kaynak:
UrlHelperExtensions.cs
Kaynak:
UrlHelperExtensions.cs

Belirtilen yol ve yol routeNamevaluesiçin mutlak yola sahip bir URL oluşturur. Bu url, kullanılacak ve host adlandırılan öğesini protocol içerir. ve Host değilsenull mutlak bir URL Protocol oluşturur. Önemli güvenlik bilgileri için açıklamalar bölümüne bakın.

public:
[System::Runtime::CompilerServices::Extension]
 static System::String ^ RouteUrl(Microsoft::AspNetCore::Mvc::IUrlHelper ^ helper, System::String ^ routeName, System::Object ^ values, System::String ^ protocol, System::String ^ host);
public static string RouteUrl (this Microsoft.AspNetCore.Mvc.IUrlHelper helper, string routeName, object values, string protocol, string host);
public static string? RouteUrl (this Microsoft.AspNetCore.Mvc.IUrlHelper helper, string? routeName, object? values, string? protocol, string? host);
static member RouteUrl : Microsoft.AspNetCore.Mvc.IUrlHelper * string * obj * string * string -> string
<Extension()>
Public Function RouteUrl (helper As IUrlHelper, routeName As String, values As Object, protocol As String, host As String) As String

Parametreler

routeName
String

URL oluşturmak için kullanılan yolun adı.

values
Object

Yol değerlerini içeren bir nesne.

protocol
String

"http" veya "https" gibi URL protokolü.

host
String

URL'nin ana bilgisayar adı.

Döndürülenler

Oluşturulan URL.

Açıklamalar

değeri host güvenilir bir değer olmalıdır. Geçerli isteğin değerine güvenmek, üst bilgi doğrulanmadığı sürece güvenilmeyen girişin sonuçta elde edilen URI'yi etkilemesine Host izin verebilir. Dağıtım ortamınızda üst bilgiyi düzgün bir şekilde doğrulama Host yönergeleri için dağıtım belgelerine bakın.

Şunlara uygulanır

RouteUrl(IUrlHelper, Object)

Kaynak:
UrlHelperExtensions.cs
Kaynak:
UrlHelperExtensions.cs
Kaynak:
UrlHelperExtensions.cs

Belirtilen yol valuesiçin mutlak yola sahip bir URL oluşturur.

public:
[System::Runtime::CompilerServices::Extension]
 static System::String ^ RouteUrl(Microsoft::AspNetCore::Mvc::IUrlHelper ^ helper, System::Object ^ values);
public static string RouteUrl (this Microsoft.AspNetCore.Mvc.IUrlHelper helper, object values);
public static string? RouteUrl (this Microsoft.AspNetCore.Mvc.IUrlHelper helper, object? values);
static member RouteUrl : Microsoft.AspNetCore.Mvc.IUrlHelper * obj -> string
<Extension()>
Public Function RouteUrl (helper As IUrlHelper, values As Object) As String

Parametreler

values
Object

Yol değerlerini içeren bir nesne.

Döndürülenler

Oluşturulan URL.

Şunlara uygulanır

RouteUrl(IUrlHelper, String)

Kaynak:
UrlHelperExtensions.cs
Kaynak:
UrlHelperExtensions.cs
Kaynak:
UrlHelperExtensions.cs

Belirtilen routeNameiçin mutlak yola sahip bir URL oluşturur.

public:
[System::Runtime::CompilerServices::Extension]
 static System::String ^ RouteUrl(Microsoft::AspNetCore::Mvc::IUrlHelper ^ helper, System::String ^ routeName);
public static string RouteUrl (this Microsoft.AspNetCore.Mvc.IUrlHelper helper, string routeName);
public static string? RouteUrl (this Microsoft.AspNetCore.Mvc.IUrlHelper helper, string? routeName);
static member RouteUrl : Microsoft.AspNetCore.Mvc.IUrlHelper * string -> string
<Extension()>
Public Function RouteUrl (helper As IUrlHelper, routeName As String) As String

Parametreler

routeName
String

URL oluşturmak için kullanılan yolun adı.

Döndürülenler

Oluşturulan URL.

Şunlara uygulanır

RouteUrl(IUrlHelper, String, Object)

Kaynak:
UrlHelperExtensions.cs
Kaynak:
UrlHelperExtensions.cs
Kaynak:
UrlHelperExtensions.cs

Belirtilen routeName ve yolu valuesiçin mutlak yol içeren bir URL oluşturur.

public:
[System::Runtime::CompilerServices::Extension]
 static System::String ^ RouteUrl(Microsoft::AspNetCore::Mvc::IUrlHelper ^ helper, System::String ^ routeName, System::Object ^ values);
public static string RouteUrl (this Microsoft.AspNetCore.Mvc.IUrlHelper helper, string routeName, object values);
public static string? RouteUrl (this Microsoft.AspNetCore.Mvc.IUrlHelper helper, string? routeName, object? values);
static member RouteUrl : Microsoft.AspNetCore.Mvc.IUrlHelper * string * obj -> string
<Extension()>
Public Function RouteUrl (helper As IUrlHelper, routeName As String, values As Object) As String

Parametreler

routeName
String

URL oluşturmak için kullanılan yolun adı.

values
Object

Yol değerlerini içeren bir nesne.

Döndürülenler

Oluşturulan URL.

Şunlara uygulanır

RouteUrl(IUrlHelper, String, Object, String)

Kaynak:
UrlHelperExtensions.cs
Kaynak:
UrlHelperExtensions.cs
Kaynak:
UrlHelperExtensions.cs

Kullanılacak belirtilen yolu içeren protocol belirtilen yol routeName ve yol valuesiçin mutlak yola sahip bir URL oluşturur. Önemli güvenlik bilgileri için açıklamalar bölümüne bakın.

public:
[System::Runtime::CompilerServices::Extension]
 static System::String ^ RouteUrl(Microsoft::AspNetCore::Mvc::IUrlHelper ^ helper, System::String ^ routeName, System::Object ^ values, System::String ^ protocol);
public static string RouteUrl (this Microsoft.AspNetCore.Mvc.IUrlHelper helper, string routeName, object values, string protocol);
public static string? RouteUrl (this Microsoft.AspNetCore.Mvc.IUrlHelper helper, string? routeName, object? values, string? protocol);
static member RouteUrl : Microsoft.AspNetCore.Mvc.IUrlHelper * string * obj * string -> string
<Extension()>
Public Function RouteUrl (helper As IUrlHelper, routeName As String, values As Object, protocol As String) As String

Parametreler

routeName
String

URL oluşturmak için kullanılan yolun adı.

values
Object

Yol değerlerini içeren bir nesne.

protocol
String

"http" veya "https" gibi URL protokolü.

Döndürülenler

Oluşturulan URL.

Açıklamalar

Bu yöntem, oluşturulan URI'nin konak bölümünü doldurmak için değerini Host kullanır. Geçerli isteğin değerine güvenmek, üst bilgi doğrulanmadığı sürece güvenilmeyen girişin sonuçta elde edilen URI'yi etkilemesine Host izin verebilir. Dağıtım ortamınızda üst bilgiyi düzgün bir şekilde doğrulama Host yönergeleri için dağıtım belgelerine bakın.

Şunlara uygulanır

RouteUrl(IUrlHelper, String, Object, String, String, String)

Kaynak:
UrlHelperExtensions.cs
Kaynak:
UrlHelperExtensions.cs
Kaynak:
UrlHelperExtensions.cs

Belirtilen host yol ve yol routeName için kullanılacak belirtilen ad ve fragmentyolunu valuesiçeren protocol mutlak yola sahip bir URL oluşturur. ve Host değilsenull mutlak bir URL Protocol oluşturur. Önemli güvenlik bilgileri için açıklamalar bölümüne bakın.

public:
[System::Runtime::CompilerServices::Extension]
 static System::String ^ RouteUrl(Microsoft::AspNetCore::Mvc::IUrlHelper ^ helper, System::String ^ routeName, System::Object ^ values, System::String ^ protocol, System::String ^ host, System::String ^ fragment);
public static string RouteUrl (this Microsoft.AspNetCore.Mvc.IUrlHelper helper, string routeName, object values, string protocol, string host, string fragment);
public static string? RouteUrl (this Microsoft.AspNetCore.Mvc.IUrlHelper helper, string? routeName, object? values, string? protocol, string? host, string? fragment);
static member RouteUrl : Microsoft.AspNetCore.Mvc.IUrlHelper * string * obj * string * string * string -> string
<Extension()>
Public Function RouteUrl (helper As IUrlHelper, routeName As String, values As Object, protocol As String, host As String, fragment As String) As String

Parametreler

routeName
String

URL oluşturmak için kullanılan yolun adı.

values
Object

Yol değerlerini içeren bir nesne.

protocol
String

"http" veya "https" gibi URL protokolü.

host
String

URL'nin ana bilgisayar adı.

fragment
String

URL'nin parçası.

Döndürülenler

Oluşturulan URL.

Açıklamalar

değeri host güvenilir bir değer olmalıdır. Geçerli isteğin değerine güvenmek, üst bilgi doğrulanmadığı sürece güvenilmeyen girişin sonuçta elde edilen URI'yi etkilemesine Host izin verebilir. Dağıtım ortamınızda üst bilgiyi düzgün bir şekilde doğrulama Host yönergeleri için dağıtım belgelerine bakın.

Şunlara uygulanır