1 write to IsImplicit
Microsoft.CodeAnalysis.Workspaces (1)
FindSymbols\ReferenceLocation.cs (1)
79this.IsImplicit = isImplicit;
16 references to IsImplicit
Microsoft.CodeAnalysis.CodeStyle.Fixes (1)
src\Analyzers\Core\CodeFixes\MakeMethodSynchronous\AbstractMakeMethodSynchronousCodeFixProvider.cs (1)
189if (referenceLocation.IsImplicit)
Microsoft.CodeAnalysis.CSharp.CodeStyle.Fixes (1)
src\Analyzers\CSharp\CodeFixes\UseSystemThreadingLock\CSharpUseSystemThreadingLockCodeFixProvider.cs (1)
132if (reference.IsImplicit)
Microsoft.CodeAnalysis.CSharp.Features (1)
src\Analyzers\CSharp\CodeFixes\UseSystemThreadingLock\CSharpUseSystemThreadingLockCodeFixProvider.cs (1)
132if (reference.IsImplicit)
Microsoft.CodeAnalysis.Features (7)
InlineMethod\AbstractInlineMethodRefactoringProvider.InlineContext.cs (1)
301.Where(location => !location.IsImplicit)
InlineMethod\AbstractInlineMethodRefactoringProvider.MethodParametersInfo.cs (1)
449.Where(location => !location.IsImplicit && calleeMethodNode.Contains(location.Location.FindNode(getInnermostNodeForTie: true, cancellationToken)))
IntroduceParameter\AbstractIntroduceParameterCodeRefactoringProvider.cs (1)
283.Where(reference => !reference.IsImplicit)
ReplaceMethodWithProperty\ReplaceMethodWithPropertyCodeRefactoringProvider.cs (2)
257if (referenceLocation.IsImplicit) 297if (referenceLocation.IsImplicit)
ReplacePropertyWithMethods\ReplacePropertyWithMethodsCodeRefactoringProvider.cs (1)
260if (referenceLocation.IsImplicit || !syntaxFacts.IsIdentifierName(parent))
src\Analyzers\Core\CodeFixes\MakeMethodSynchronous\AbstractMakeMethodSynchronousCodeFixProvider.cs (1)
189if (referenceLocation.IsImplicit)
Microsoft.CodeAnalysis.Workspaces (6)
FindSymbols\ReferenceLocation.cs (3)
120this.IsImplicit == other.IsImplicit; 126Hash.Combine(this.IsImplicit,
Remote\RemoteArguments.cs (1)
166referenceLocation.IsImplicit,
Rename\SymbolicRenameLocations.cs (1)
144var implicitLocations = referenceSymbols.SelectMany(refSym => refSym.Locations).Where(loc => loc.IsImplicit).ToImmutableArray();
Rename\SymbolicRenameLocations.ReferenceProcessing.cs (1)
257if (location.IsImplicit)