Delen via


ScoreDetails Constructors

Definition

Overloads

ScoreDetails()

Initializes a new instance of the ScoreDetails class.

ScoreDetails(Nullable<Int32>, Nullable<Double>, Nullable<Double>)

Initializes a new instance of the ScoreDetails class.

ScoreDetails()

Initializes a new instance of the ScoreDetails class.

public ScoreDetails ();
Public Sub New ()

Applies to

ScoreDetails(Nullable<Int32>, Nullable<Double>, Nullable<Double>)

Initializes a new instance of the ScoreDetails class.

public ScoreDetails (int? max = default, double? current = default, double? percentage = default);
new Microsoft.Azure.Management.Security.Models.ScoreDetails : Nullable<int> * Nullable<double> * Nullable<double> -> Microsoft.Azure.Management.Security.Models.ScoreDetails
Public Sub New (Optional max As Nullable(Of Integer) = Nothing, Optional current As Nullable(Of Double) = Nothing, Optional percentage As Nullable(Of Double) = Nothing)

Parameters

max
Nullable<Int32>

Maximum score available

current
Nullable<Double>

Current score

percentage
Nullable<Double>

Ratio of the current score divided by the maximum. Rounded to 4 digits after the decimal point

Applies to