UrlHelperExtensions.Action Yöntem

Tanım

Aşırı Yüklemeler

Action(IUrlHelper)

Bir eylem yöntemi için yolu olan bir URL oluşturur.

Action(IUrlHelper, String)

Belirtilen action adını içeren bir eylem yöntemi için yolu olan bir URL oluşturur.

Action(IUrlHelper, String, Object)

Belirtilen action adını ve yol valuesiçeren bir eylem yöntemi yolu olan bir URL oluşturur.

Action(IUrlHelper, String, String)

Belirtilen action ve controller adlarını içeren bir eylem yöntemi yolu olan bir URL oluşturur.

Action(IUrlHelper, String, String, Object)

Belirtilen action adını, controller adını ve yol valuesiçeren bir eylem yöntemi yolu olan bir URL oluşturur.

Action(IUrlHelper, String, String, Object, String)

Belirtilen action adını, controller adını, yol valuesve kullanılacak protocol içeren bir eylem yöntemi yolu içeren bir URL oluşturur. Önemli güvenlik bilgileri için açıklamalar bölümüne bakın.

Action(IUrlHelper, String, String, Object, String, String)

Belirtilen action adını, controller adını, yol values, kullanılacak protocol ve host adını içeren bir eylem yöntemi yolu içeren bir URL oluşturur. protocol ve hostnulldeğilse mutlak bir URL oluşturur. Önemli güvenlik bilgileri için açıklamalar bölümüne bakın.

Action(IUrlHelper, String, String, Object, String, String, String)

Belirtilen action adını, controller adını, kullanılacak yol valuesprotocol, host adını ve fragmentiçeren bir eylem yöntemi yolu olan bir URL oluşturur. protocol ve hostnulldeğilse mutlak bir URL oluşturur. Önemli güvenlik bilgileri için açıklamalar bölümüne bakın.

Action(IUrlHelper)

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

Bir eylem yöntemi için yolu olan bir URL oluşturur.

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

Parametreler

Döndürülenler

Oluşturulan URL.

Şunlara uygulanır

Action(IUrlHelper, String)

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

Belirtilen action adını içeren bir eylem yöntemi için yolu olan bir URL oluşturur.

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

Parametreler

action
String

Eylem yönteminin adı.

Döndürülenler

Oluşturulan URL.

Şunlara uygulanır

Action(IUrlHelper, String, Object)

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

Belirtilen action adını ve yol valuesiçeren bir eylem yöntemi yolu olan bir URL oluşturur.

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

Parametreler

action
String

Eylem yönteminin adı.

values
Object

Yol değerlerini içeren bir nesne.

Döndürülenler

Oluşturulan URL.

Şunlara uygulanır

Action(IUrlHelper, String, String)

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

Belirtilen action ve controller adlarını içeren bir eylem yöntemi yolu olan bir URL oluşturur.

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

Parametreler

action
String

Eylem yönteminin adı.

controller
String

Denetleyicinin adı.

Döndürülenler

Oluşturulan URL.

Şunlara uygulanır

Action(IUrlHelper, String, String, Object)

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

Belirtilen action adını, controller adını ve yol valuesiçeren bir eylem yöntemi yolu olan bir URL oluşturur.

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

Parametreler

action
String

Eylem yönteminin adı.

controller
String

Denetleyicinin adı.

values
Object

Yol değerlerini içeren bir nesne.

Döndürülenler

Oluşturulan URL.

Şunlara uygulanır

Action(IUrlHelper, String, String, Object, String)

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

Belirtilen action adını, controller adını, yol valuesve kullanılacak protocol içeren bir eylem yöntemi yolu içeren 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 ^ Action(Microsoft::AspNetCore::Mvc::IUrlHelper ^ helper, System::String ^ action, System::String ^ controller, System::Object ^ values, System::String ^ protocol);
public static string Action (this Microsoft.AspNetCore.Mvc.IUrlHelper helper, string action, string controller, object values, string protocol);
public static string? Action (this Microsoft.AspNetCore.Mvc.IUrlHelper helper, string? action, string? controller, object? values, string? protocol);
static member Action : Microsoft.AspNetCore.Mvc.IUrlHelper * string * string * obj * string -> string
<Extension()>
Public Function Action (helper As IUrlHelper, action As String, controller As String, values As Object, protocol As String) As String

Parametreler

action
String

Eylem yönteminin adı.

controller
String

Denetleyicinin adı.

values
Object

Yol değerlerini içeren bir nesne.

protocol
String

URL için "http" veya "https" gibi 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 Host değerini kullanır. Geçerli isteğin değerine güvenmek, Host üst bilgisi doğrulanmadığı sürece güvenilmeyen girişin sonuçta elde edilen URI'yi etkilemesine izin verebilir. Dağıtım ortamınızda Host üst bilgisini düzgün şekilde doğrulama yönergeleri için dağıtım belgelerine bakın.

Şunlara uygulanır

Action(IUrlHelper, String, String, Object, String, String)

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

Belirtilen action adını, controller adını, yol values, kullanılacak protocol ve host adını içeren bir eylem yöntemi yolu içeren bir URL oluşturur. protocol ve hostnulldeğilse mutlak 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 ^ Action(Microsoft::AspNetCore::Mvc::IUrlHelper ^ helper, System::String ^ action, System::String ^ controller, System::Object ^ values, System::String ^ protocol, System::String ^ host);
public static string Action (this Microsoft.AspNetCore.Mvc.IUrlHelper helper, string action, string controller, object values, string protocol, string host);
public static string? Action (this Microsoft.AspNetCore.Mvc.IUrlHelper helper, string? action, string? controller, object? values, string? protocol, string? host);
static member Action : Microsoft.AspNetCore.Mvc.IUrlHelper * string * string * obj * string * string -> string
<Extension()>
Public Function Action (helper As IUrlHelper, action As String, controller As String, values As Object, protocol As String, host As String) As String

Parametreler

action
String

Eylem yönteminin adı.

controller
String

Denetleyicinin adı.

values
Object

Yol değerlerini içeren bir nesne.

protocol
String

URL için "http" veya "https" gibi protokol.

host
String

URL'nin ana bilgisayar adı.

Döndürülenler

Oluşturulan URL.

Açıklamalar

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

Şunlara uygulanır

Action(IUrlHelper, String, String, Object, String, String, String)

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

Belirtilen action adını, controller adını, kullanılacak yol valuesprotocol, host adını ve fragmentiçeren bir eylem yöntemi yolu olan bir URL oluşturur. protocol ve hostnulldeğilse mutlak 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 ^ Action(Microsoft::AspNetCore::Mvc::IUrlHelper ^ helper, System::String ^ action, System::String ^ controller, System::Object ^ values, System::String ^ protocol, System::String ^ host, System::String ^ fragment);
public static string Action (this Microsoft.AspNetCore.Mvc.IUrlHelper helper, string action, string controller, object values, string protocol, string host, string fragment);
public static string? Action (this Microsoft.AspNetCore.Mvc.IUrlHelper helper, string? action, string? controller, object? values, string? protocol, string? host, string? fragment);
static member Action : Microsoft.AspNetCore.Mvc.IUrlHelper * string * string * obj * string * string * string -> string
<Extension()>
Public Function Action (helper As IUrlHelper, action As String, controller As String, values As Object, protocol As String, host As String, fragment As String) As String

Parametreler

action
String

Eylem yönteminin adı.

controller
String

Denetleyicinin adı.

values
Object

Yol değerlerini içeren bir nesne.

protocol
String

URL için "http" veya "https" gibi protokol.

host
String

URL'nin ana bilgisayar adı.

fragment
String

URL'nin parçası.

Döndürülenler

Oluşturulan URL.

Açıklamalar

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

Şunlara uygulanır