/// <summary> /// Initializes a new instance of the StyleCopQuickFixBase class that can handle <see cref="StyleCopHighlightingInfo"/> . /// </summary> /// <param name="highlight"> /// <see cref="StyleCopHighlightingInfo"/> that has been detected. /// </param> protected StyleCopQuickFixBase(StyleCopHighlightingInfo highlight) : this(highlight, true) { }
/// <summary> /// Initializes a new instance of the SA1011QuickFix class that can handle /// <see cref="StyleCopHighlightingInfo"/>. /// </summary> /// <param name="highlight"> /// <see cref="StyleCopHighlightingInfo"/>that has been detected. /// </param> public SA1011QuickFix(StyleCopHighlightingInfo highlight) : base(highlight) { }
/// <summary> /// Initializes a new instance of the SuppressStyleCopQuickFix class that can handle <see cref="StyleCopHighlightingInfo"/> . /// </summary> /// <param name="highlight"> /// <see cref="StyleCopHighlightingInfo"/> that has been detected. /// </param> public SuppressStyleCopQuickFix(StyleCopHighlightingInfo highlight) : this(highlight, true) { }