你当前正在访问 Microsoft Azure Global Edition 技术文档网站。 如果需要访问由世纪互联运营的 Microsoft Azure 中国技术文档网站,请访问 https://docs.azure.cn。
UrlRedirectActionParameters 构造函数
定义
重要
一些信息与预发行产品相关,相应产品在发行之前可能会进行重大修改。 对于此处提供的信息,Microsoft 不作任何明示或暗示的担保。
重载
UrlRedirectActionParameters() |
初始化 UrlRedirectActionParameters 类的新实例。 |
UrlRedirectActionParameters(String, String, String, String, String, String) |
初始化 UrlRedirectActionParameters 类的新实例。 |
UrlRedirectActionParameters()
初始化 UrlRedirectActionParameters 类的新实例。
public UrlRedirectActionParameters ();
Public Sub New ()
适用于
UrlRedirectActionParameters(String, String, String, String, String, String)
初始化 UrlRedirectActionParameters 类的新实例。
public UrlRedirectActionParameters (string redirectType, string destinationProtocol = default, string customPath = default, string customHostname = default, string customQueryString = default, string customFragment = default);
new Microsoft.Azure.Management.Cdn.Models.UrlRedirectActionParameters : string * string * string * string * string * string -> Microsoft.Azure.Management.Cdn.Models.UrlRedirectActionParameters
Public Sub New (redirectType As String, Optional destinationProtocol As String = Nothing, Optional customPath As String = Nothing, Optional customHostname As String = Nothing, Optional customQueryString As String = Nothing, Optional customFragment As String = Nothing)
参数
- redirectType
- String
规则在重定向流量时将使用的重定向类型。 可能的值包括:“Moved”、“Found”、“TemporaryRedirect”、“PermanentRedirect”
- destinationProtocol
- String
用于重定向的协议。 默认值为 MatchRequest。 可能的值包括:“MatchRequest”、“Http”、“Https”
- customPath
- String
要重定向的完整路径。 路径不能为空,并且必须以 /开头。 保留为空,以使用传入路径作为目标路径。
- customHostname
- String
要重定向的主机。 留空以使用传入主机作为目标主机。
- customQueryString
- String
要放置在重定向 URL 中的查询字符串集。 设置此值将替换任何现有的查询字符串;保留空以保留传入的查询字符串。 查询字符串必须采用 <key>=<value> 格式。 ? 和 & 将自动添加,因此请勿包含它们。
- customFragment
- String
要添加到重定向 URL 的片段。 片段是 #之后的 URL 的一部分。 不要包含 #。