public VerificationAttribute(string guideline, string checkpoint, System.Web.UI.VerificationReportLevel reportLevel, int priority, string message, System.Web.UI.VerificationRule rule, string conditionalProperty, System.Web.UI.VerificationConditionalOperator conditionalOperator, string conditionalValue, string guidelineUrl)
 {
     this._guideline           = guideline;
     this._checkpoint          = checkpoint;
     this._reportLevel         = reportLevel;
     this._priority            = priority;
     this._message             = message;
     this._rule                = rule;
     this._conditionalProperty = conditionalProperty;
     this._conditionalOperator = conditionalOperator;
     this._conditionalValue    = conditionalValue;
     this._guidelineUrl        = guidelineUrl;
 }
 public VerificationAttribute(string guideline, string checkpoint, System.Web.UI.VerificationReportLevel reportLevel, int priority, string message, System.Web.UI.VerificationRule rule, string conditionalProperty, System.Web.UI.VerificationConditionalOperator conditionalOperator, string conditionalValue, string guidelineUrl)
 {
     this._guideline = guideline;
     this._checkpoint = checkpoint;
     this._reportLevel = reportLevel;
     this._priority = priority;
     this._message = message;
     this._rule = rule;
     this._conditionalProperty = conditionalProperty;
     this._conditionalOperator = conditionalOperator;
     this._conditionalValue = conditionalValue;
     this._guidelineUrl = guidelineUrl;
 }
 internal VerificationAttribute(string guideline, string checkpoint, System.Web.UI.VerificationReportLevel reportLevel, int priority, string message, System.Web.UI.VerificationRule rule, string conditionalProperty, System.Web.UI.VerificationConditionalOperator conditionalOperator, string conditionalValue) : this(guideline, checkpoint, reportLevel, priority, message, rule, conditionalProperty, conditionalOperator, conditionalValue, string.Empty)
 {
 }