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