Share via


NetworkSecurityRulesEvaluationResult Constructors

Definition

Overloads

NetworkSecurityRulesEvaluationResult()

Initializes a new instance of the NetworkSecurityRulesEvaluationResult class.

NetworkSecurityRulesEvaluationResult(String, Nullable<Boolean>, Nullable<Boolean>, Nullable<Boolean>, Nullable<Boolean>, Nullable<Boolean>)

Initializes a new instance of the NetworkSecurityRulesEvaluationResult class.

NetworkSecurityRulesEvaluationResult()

Initializes a new instance of the NetworkSecurityRulesEvaluationResult class.

public NetworkSecurityRulesEvaluationResult ();
Public Sub New ()

Applies to

NetworkSecurityRulesEvaluationResult(String, Nullable<Boolean>, Nullable<Boolean>, Nullable<Boolean>, Nullable<Boolean>, Nullable<Boolean>)

Initializes a new instance of the NetworkSecurityRulesEvaluationResult class.

public NetworkSecurityRulesEvaluationResult (string name = default, bool? protocolMatched = default, bool? sourceMatched = default, bool? sourcePortMatched = default, bool? destinationMatched = default, bool? destinationPortMatched = default);
new Microsoft.Azure.Management.Network.Models.NetworkSecurityRulesEvaluationResult : string * Nullable<bool> * Nullable<bool> * Nullable<bool> * Nullable<bool> * Nullable<bool> -> Microsoft.Azure.Management.Network.Models.NetworkSecurityRulesEvaluationResult
Public Sub New (Optional name As String = Nothing, Optional protocolMatched As Nullable(Of Boolean) = Nothing, Optional sourceMatched As Nullable(Of Boolean) = Nothing, Optional sourcePortMatched As Nullable(Of Boolean) = Nothing, Optional destinationMatched As Nullable(Of Boolean) = Nothing, Optional destinationPortMatched As Nullable(Of Boolean) = Nothing)

Parameters

name
String

Name of the network security rule.

protocolMatched
Nullable<Boolean>

Value indicating whether protocol is matched.

sourceMatched
Nullable<Boolean>

Value indicating whether source is matched.

sourcePortMatched
Nullable<Boolean>

Value indicating whether source port is matched.

destinationMatched
Nullable<Boolean>

Value indicating whether destination is matched.

destinationPortMatched
Nullable<Boolean>

Value indicating whether destination port is matched.

Applies to