Share via


RuleResultsInput Constructors

Definition

Overloads

RuleResultsInput()

Initializes a new instance of the RuleResultsInput class.

RuleResultsInput(Nullable<Boolean>, IList<IList<String>>)

Initializes a new instance of the RuleResultsInput class.

RuleResultsInput()

Initializes a new instance of the RuleResultsInput class.

public RuleResultsInput ();
Public Sub New ()

Applies to

RuleResultsInput(Nullable<Boolean>, IList<IList<String>>)

Initializes a new instance of the RuleResultsInput class.

public RuleResultsInput (bool? latestScan = default, System.Collections.Generic.IList<System.Collections.Generic.IList<string>> results = default);
new Microsoft.Azure.Management.Security.Models.RuleResultsInput : Nullable<bool> * System.Collections.Generic.IList<System.Collections.Generic.IList<string>> -> Microsoft.Azure.Management.Security.Models.RuleResultsInput
Public Sub New (Optional latestScan As Nullable(Of Boolean) = Nothing, Optional results As IList(Of IList(Of String)) = Nothing)

Parameters

latestScan
Nullable<Boolean>

Take results from latest scan.

results
IList<IList<String>>

Expected results to be inserted into the baseline.Leave this field empty it LatestScan == true.

Applies to