ClassLibrary.Base.RuleViolation.RuleViolation C# (CSharp) Method

RuleViolation() public method

public RuleViolation ( string propertyName, object propertyValue, string errorMessage )
propertyName string
propertyValue object
errorMessage string
        public RuleViolation(string propertyName, object propertyValue, string errorMessage)
        {
            PropertyName = propertyName;
            PropertyValue = propertyValue;
            ErrorMessage = errorMessage;
        }
RuleViolation