NetworkACL Constructors

Definition

Overloads

Name Description
NetworkACL()

Initializes a new instance of the NetworkACL class.

NetworkACL(IList<String>, IList<String>)

Initializes a new instance of the NetworkACL class.

NetworkACL()

Initializes a new instance of the NetworkACL class.

public NetworkACL();
Public Sub New ()

Applies to

NetworkACL(IList<String>, IList<String>)

Initializes a new instance of the NetworkACL class.

public NetworkACL(System.Collections.Generic.IList<string> allow = default, System.Collections.Generic.IList<string> deny = default);
new Microsoft.Azure.Management.SignalR.Models.NetworkACL : System.Collections.Generic.IList<string> * System.Collections.Generic.IList<string> -> Microsoft.Azure.Management.SignalR.Models.NetworkACL
Public Sub New (Optional allow As IList(Of String) = Nothing, Optional deny As IList(Of String) = Nothing)

Parameters

allow
IList<String>

Allowed request types. The value can be one or more of: ClientConnection, ServerConnection, RESTAPI.

deny
IList<String>

Denied request types. The value can be one or more of: ClientConnection, ServerConnection, RESTAPI.

Applies to