6 references to Negated
Microsoft.CodeAnalysis.CodeStyle (2)
AbstractUseIsNullForReferenceEqualsDiagnosticAnalyzer.cs (1)
137properties = properties.Add(UseIsNullConstants.Negated, "");
UseIsNullConstants.cs (1)
12public const string Negated = nameof(Negated);
Microsoft.CodeAnalysis.CodeStyle.Fixes (2)
AbstractUseIsNullForReferenceEqualsCodeFixProvider.cs (2)
40var negated = diagnostic.Properties.ContainsKey(UseIsNullConstants.Negated); 65var negate = diagnostic.Properties.ContainsKey(UseIsNullConstants.Negated);
Microsoft.CodeAnalysis.CSharp.CodeStyle (1)
CSharpUseIsNullCheckForCastAndEqualityOperatorDiagnosticAnalyzer.cs (1)
21s_properties.Add(UseIsNullConstants.Negated, "");
Microsoft.CodeAnalysis.CSharp.CodeStyle.Fixes (1)
CSharpUseIsNullCheckForCastAndEqualityOperatorCodeFixProvider.cs (1)
46var negated = diagnostic.Properties.ContainsKey(UseIsNullConstants.Negated);