/// <summary>
 /// Initializes a new instance of the SA1211QuickFix class that can handle
 /// <see cref="StyleCopViolationSuggestion"/>.
 /// </summary>
 /// <param name="highlight">
 /// <see cref="StyleCopViolationSuggestion"/>that has been detected.
 /// </param>
 public SA1211QuickFix(StyleCopViolationSuggestion highlight)
     : base(highlight)
 {
 }
 /// <summary>
 /// Initializes a new instance of the SuppressStyleCopQuickFix class that can handle
 /// <see cref="StyleCopViolationSuggestion"/>.
 /// </summary>
 /// <param name="highlight">
 /// <see cref="StyleCopViolationSuggestion"/>that has been detected.
 /// </param>
 public SuppressStyleCopQuickFix(StyleCopViolationSuggestion highlight)
     : this(highlight, true)
 {
 }
Exemple #3
0
 /// <summary>
 /// Initializes a new instance of the SA1208QuickFix class that can handle
 /// <see cref="StyleCopViolationSuggestion"/>.
 /// </summary>
 /// <param name="highlight">
 /// <see cref="StyleCopViolationSuggestion"/>that has been detected.
 /// </param>
 public SA1208QuickFix(StyleCopViolationSuggestion highlight)
     : base(highlight)
 {
 }
 /// <summary>
 /// Initializes a new instance of the QuickFixBase class that can handle
 /// <see cref="StyleCopViolationSuggestion"/>.
 /// </summary>
 /// <param name="highlight">
 /// <see cref="StyleCopViolationSuggestion"/>that has been detected.
 /// </param>
 protected QuickFixBase(StyleCopViolationSuggestion highlight)
     : this(highlight, true)
 {
 }
Exemple #5
0
 /// <summary>
 /// Initializes a new instance of the QuickFixBase class that can handle
 /// <see cref="StyleCopViolationSuggestion"/>.
 /// </summary>
 /// <param name="highlight">
 /// <see cref="StyleCopViolationSuggestion"/>that has been detected.
 /// </param>
 protected QuickFixBase(StyleCopViolationSuggestion highlight)
     : this(highlight, true)
 {
 }