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

RulesResultsInput Constructors

Definition

Overloads

RulesResultsInput()

Initializes a new instance of the RulesResultsInput class.

RulesResultsInput(Nullable<Boolean>, IDictionary<String,IList<IList<String>>>)

Initializes a new instance of the RulesResultsInput class.

RulesResultsInput()

Initializes a new instance of the RulesResultsInput class.

public RulesResultsInput ();
Public Sub New ()

Applies to

RulesResultsInput(Nullable<Boolean>, IDictionary<String,IList<IList<String>>>)

Initializes a new instance of the RulesResultsInput class.

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

Parameters

latestScan
Nullable<Boolean>

Take results from latest scan.

results
IDictionary<String,IList<IList<String>>>

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

Applies to