Class ScoreCalculation
Represents the settings used to calculate and display the score for an exam submission.
public class ScoreCalculation
- Inheritance
-
ScoreCalculation
- Inherited Members
- Extension Methods
Constructors
ScoreCalculation()
public ScoreCalculation()
Properties
Disclosure
What information is disclosed to a student/candidate after completing an exam submission?
public DisclosureType Disclosure { get; set; }
Property Value
FailureWeight
If the student/candidate fails the exam, what weight is applied to the submission score?
public decimal FailureWeight { get; set; }
Property Value
PassingScore
What is the minimum score required to pass the exam?
public decimal PassingScore { get; set; }
Property Value
SuccessWeight
If the student/candidate passes the exam, what weight is applied to the submission score?
public decimal SuccessWeight { get; set; }
Property Value
Methods
Clone()
public ScoreCalculation Clone()
Returns
SetDisclosure(string)
Sets the disclosure type from a string value. (Here we need some flexibility in case the text does not exactly matching the enumeration name.)
public void SetDisclosure(string text)
Parameters
textstring