UrlHelperExtensions.RouteUrl Yöntem
Tanım
Önemli
Bazı bilgiler ürünün ön sürümüyle ilgilidir ve sürüm öncesinde önemli değişiklikler yapılmış olabilir. Burada verilen bilgilerle ilgili olarak Microsoft açık veya zımni hiçbir garanti vermez.
Aşırı Yüklemeler
RouteUrl(IUrlHelper, String, Object, String, String) |
Belirtilen yol ve yol |
RouteUrl(IUrlHelper, Object) |
Belirtilen yol |
RouteUrl(IUrlHelper, String) |
Belirtilen |
RouteUrl(IUrlHelper, String, Object) |
Belirtilen |
RouteUrl(IUrlHelper, String, Object, String) |
Kullanılacak belirtilen yolu içeren |
RouteUrl(IUrlHelper, String, Object, String, String, String) |
Belirtilen |
RouteUrl(IUrlHelper, String, Object, String, String)
- Kaynak:
- UrlHelperExtensions.cs
- Kaynak:
- UrlHelperExtensions.cs
- Kaynak:
- UrlHelperExtensions.cs
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
- helper
- IUrlHelper
- 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 values
iç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
- helper
- IUrlHelper
- 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 routeName
iç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
- helper
- IUrlHelper
- 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 values
iç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
- helper
- IUrlHelper
- 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 values
iç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
- helper
- IUrlHelper
- 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
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
- helper
- IUrlHelper
- 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.