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