共用方式為


LocalRedirectResult 建構函式

定義

多載

LocalRedirectResult(String)

使用提供的值,初始化 LocalRedirectResult 類別的新執行個體。

LocalRedirectResult(String, Boolean)

使用提供的值,初始化 LocalRedirectResult 類別的新執行個體。

LocalRedirectResult(String, Boolean, Boolean)

使用提供的值,初始化 LocalRedirectResult 類別的新執行個體。

LocalRedirectResult(String)

來源:
LocalRedirectResult.cs
來源:
LocalRedirectResult.cs

使用提供的值,初始化 LocalRedirectResult 類別的新執行個體。

public:
 LocalRedirectResult(System::String ^ localUrl);
public LocalRedirectResult (string localUrl);
new Microsoft.AspNetCore.Mvc.LocalRedirectResult : string -> Microsoft.AspNetCore.Mvc.LocalRedirectResult
Public Sub New (localUrl As String)

參數

localUrl
String

要重新導向至的本機 URL。

適用於

LocalRedirectResult(String, Boolean)

來源:
LocalRedirectResult.cs
來源:
LocalRedirectResult.cs

使用提供的值,初始化 LocalRedirectResult 類別的新執行個體。

public:
 LocalRedirectResult(System::String ^ localUrl, bool permanent);
public LocalRedirectResult (string localUrl, bool permanent);
new Microsoft.AspNetCore.Mvc.LocalRedirectResult : string * bool -> Microsoft.AspNetCore.Mvc.LocalRedirectResult
Public Sub New (localUrl As String, permanent As Boolean)

參數

localUrl
String

要重新導向至的本機 URL。

permanent
Boolean

指定重新導向應該是永久 (301) 還是暫時 (302) 。

適用於

LocalRedirectResult(String, Boolean, Boolean)

來源:
LocalRedirectResult.cs
來源:
LocalRedirectResult.cs

使用提供的值,初始化 LocalRedirectResult 類別的新執行個體。

public:
 LocalRedirectResult(System::String ^ localUrl, bool permanent, bool preserveMethod);
public LocalRedirectResult (string localUrl, bool permanent, bool preserveMethod);
new Microsoft.AspNetCore.Mvc.LocalRedirectResult : string * bool * bool -> Microsoft.AspNetCore.Mvc.LocalRedirectResult
Public Sub New (localUrl As String, permanent As Boolean, preserveMethod As Boolean)

參數

localUrl
String

要重新導向至的本機 URL。

permanent
Boolean

指定重新導向應該是永久 (301) 還是暫時 (302) 。

preserveMethod
Boolean

如果設定為 true,請將暫時重新導向 (307) 或永久重新導向 (308) 保留初始要求的方法。

適用於