你当前正在访问 Microsoft Azure Global Edition 技术文档网站。 如果需要访问由世纪互联运营的 Microsoft Azure 中国技术文档网站,请访问 https://docs.azure.cn

IBlank<ParentT> 接口

定义

应用程序网关请求路由规则定义的第一阶段。

public interface IBlank<ParentT> : Microsoft.Azure.Management.Network.Fluent.ApplicationGatewayRequestRoutingRule.UpdateDefinition.IWithFrontend<ParentT>, Microsoft.Azure.Management.Network.Fluent.ApplicationGatewayRequestRoutingRule.UpdateDefinition.IWithListener<ParentT>, Microsoft.Azure.Management.Network.Fluent.ApplicationGatewayRequestRoutingRule.UpdateDefinition.IWithListenerOrFrontend<ParentT>
type IBlank<'ParentT> = interface
    interface IWithListenerOrFrontend<'ParentT>
    interface IWithListener<'ParentT>
    interface IWithFrontend<'ParentT>
Public Interface IBlank(Of ParentT)
Implements IWithFrontend(Of ParentT), IWithListener(Of ParentT), IWithListenerOrFrontend(Of ParentT)

类型参数

ParentT

附加此定义后要返回到的应用程序网关定义的阶段。

派生
实现

方法

FromListener(String)

将请求路由规则与前端侦听器相关联。 如果具有指定名称的侦听器尚不存在,则必须在应用程序网关定义的可选部分中单独定义该侦听器。 这只会按名称添加对侦听器的引用。 另请注意,给定侦听器一次只能由一个请求路由规则使用。

(继承自 IWithListener<ParentT>)
FromPrivateFrontend()

允许将规则应用于应用程序网关的专用 (内部) 前端。 如果专用前端 IP 配置尚不存在,则会使用自动生成的名称创建它。 如果应用程序网关没有为其专用前端指定子网,则会自动创建一个子网,除非在应用程序网关定义的可选设置中指定了特定的子网。

(继承自 IWithFrontend<ParentT>)
FromPublicFrontend()

使规则应用于应用程序网关的公共 (面向 Internet) 前端。 如果公共前端 IP 配置尚不存在,则会使用自动生成的名称创建它。 如果应用程序网关没有为其公共前端指定公共 IP 地址,则将自动创建一个公共 IP 地址,除非在应用程序网关定义的可选设置中指定了特定的公共 IP 地址。

(继承自 IWithFrontend<ParentT>)

适用于