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