HttpResponse.Redirect 方法
定义
重要
一些信息与预发行产品相关,相应产品在发行之前可能会进行重大修改。 对于此处提供的信息,Microsoft 不作任何明示或暗示的担保。
重载
Redirect(String) |
向客户端返回 (HTTP 302) 的临时重定向响应。 |
Redirect(String, Boolean) |
返回 (HTTP 301 或 HTTP 302) 客户端的重定向响应。 |
Redirect(String)
- Source:
- HttpResponse.cs
- Source:
- HttpResponse.cs
- Source:
- HttpResponse.cs
向客户端返回 (HTTP 302) 的临时重定向响应。
public:
virtual void Redirect(System::String ^ location);
public virtual void Redirect (string location);
abstract member Redirect : string -> unit
override this.Redirect : string -> unit
Public Overridable Sub Redirect (location As String)
参数
- location
- String
将客户端重定向到的 URL。 必须正确编码才能在仅允许 ASCII 字符的 http 标头中使用。
适用于
Redirect(String, Boolean)
- Source:
- HttpResponse.cs
- Source:
- HttpResponse.cs
- Source:
- HttpResponse.cs
返回 (HTTP 301 或 HTTP 302) 客户端的重定向响应。
public:
abstract void Redirect(System::String ^ location, bool permanent);
public abstract void Redirect (string location, bool permanent);
abstract member Redirect : string * bool -> unit
Public MustOverride Sub Redirect (location As String, permanent As Boolean)
参数
- location
- String
将客户端重定向到的 URL。 必须正确编码才能在仅允许 ASCII 字符的 http 标头中使用。
- permanent
- Boolean
True
如果重定向是永久 (301) ,则为 ;否则 false
(302) 。