InboundIpRule Constructors

Definition

Overloads

InboundIpRule()

Initializes a new instance of the InboundIpRule class.

InboundIpRule(String, String)

Initializes a new instance of the InboundIpRule class.

InboundIpRule()

Initializes a new instance of the InboundIpRule class.

public InboundIpRule ();
Public Sub New ()

Applies to

InboundIpRule(String, String)

Initializes a new instance of the InboundIpRule class.

public InboundIpRule (string ipMask = default, string action = default);
new Microsoft.Azure.Management.EventGrid.Models.InboundIpRule : string * string -> Microsoft.Azure.Management.EventGrid.Models.InboundIpRule
Public Sub New (Optional ipMask As String = Nothing, Optional action As String = Nothing)

Parameters

ipMask
String

IP Address in CIDR notation e.g., 10.0.0.0/8.

action
String

Action to perform based on the match or no match of the IpMask. Possible values include: 'Allow'

Applies to