Aracılığıyla paylaş


SecureScoreControlScore Constructors

Definition

Overloads

SecureScoreControlScore()

Initializes a new instance of the SecureScoreControlScore class.

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

Initializes a new instance of the SecureScoreControlScore class.

SecureScoreControlScore()

Initializes a new instance of the SecureScoreControlScore class.

public SecureScoreControlScore ();
Public Sub New ()

Applies to

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

Initializes a new instance of the SecureScoreControlScore class.

public SecureScoreControlScore (int? max = default, double? current = default, double? percentage = default);
new Microsoft.Azure.Management.Security.Models.SecureScoreControlScore : Nullable<int> * Nullable<double> * Nullable<double> -> Microsoft.Azure.Management.Security.Models.SecureScoreControlScore
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 control score (0..10)

current
Nullable<Double>

Actual score for the control = (achieved points / total points) * max score. if total points is zeroed, the return number is 0.00

percentage
Nullable<Double>

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

Applies to