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