Example #1
0
 /// <summary>
 /// Returns true if a diagnostic is not configurable, i.e. cannot be suppressed or filtered or have its severity changed.
 /// For example, compiler errors are always non-configurable.
 /// </summary>
 internal virtual bool IsNotConfigurable()
 {
     return(AnalyzerManager.HasNotConfigurableTag(this.CustomTags));
 }
 /// <summary>
 /// Returns true if diagnostic descriptor is not configurable, i.e. cannot be suppressed or filtered or have its severity changed.
 /// For example, compiler errors are always non-configurable.
 /// </summary>
 internal bool IsNotConfigurable()
 {
     return(AnalyzerManager.HasNotConfigurableTag(ImmutableCustomTags));
 }