5 implementations of IsWithEvents
Microsoft.CodeAnalysis.CodeStyle.Fixes (1)
CodeGenerationPropertySymbol.cs (1)
96public bool IsWithEvents => false;
Microsoft.CodeAnalysis.CSharp (1)
Symbols\PublicModel\PropertySymbol.cs (1)
89bool IPropertySymbol.IsWithEvents
Microsoft.CodeAnalysis.Features (1)
MetadataAsSource\AbstractMetadataAsSourceService.WrappedPropertySymbol.cs (1)
40public bool IsWithEvents => _symbol.IsWithEvents;
Microsoft.CodeAnalysis.VisualBasic (1)
Symbols\PropertySymbol.vb (1)
478Public Overridable ReadOnly Property IsWithEvents As Boolean Implements IPropertySymbol.IsWithEvents
Microsoft.CodeAnalysis.Workspaces (1)
CodeGenerationPropertySymbol.cs (1)
96public bool IsWithEvents => false;
18 references to IsWithEvents
Microsoft.CodeAnalysis.CodeStyle (2)
AbstractUseAutoPropertyAnalyzer.cs (1)
169if (property.IsWithEvents)
INamedTypeSymbolExtensions.cs (1)
573IPropertySymbol { IsWithEvents: false } => true,
Microsoft.CodeAnalysis.Features (4)
AbstractUseAutoPropertyAnalyzer.cs (1)
169if (property.IsWithEvents)
ExtractInterface\AbstractExtractInterfaceService.cs (1)
453return !prop.IsWithEvents &&
MetadataAsSource\AbstractMetadataAsSourceService.WrappedPropertySymbol.cs (1)
40public bool IsWithEvents => _symbol.IsWithEvents;
Shared\Extensions\ISymbolExtensions_2.cs (1)
138if (propertySymbol.IsWithEvents)
Microsoft.CodeAnalysis.VisualBasic (1)
Symbols\PropertySymbol.vb (1)
478Public Overridable ReadOnly Property IsWithEvents As Boolean Implements IPropertySymbol.IsWithEvents
Microsoft.CodeAnalysis.VisualBasic.Features (5)
CodeFixes\GenerateEvent\GenerateEventCodeFixProvider.vb (1)
347If withEventsProperty Is Nothing OrElse Not withEventsProperty.IsWithEvents Then
Completion\CompletionProviders\HandlesClauseCompletionProvider.vb (1)
148Return [property].IsWithEvents
EditAndContinue\VisualBasicEditAndContinueAnalyzer.vb (1)
1872If symbol.IsWithEvents Then
NavigationBar\VisualBasicNavigationBarItemService.vb (2)
136If propertySymbol IsNot Nothing AndAlso propertySymbol.IsWithEvents Then 284Return Not p.IsWithEvents
Microsoft.CodeAnalysis.Workspaces (1)
J\s\src\Workspaces\SharedUtilitiesAndExtensions\Compiler\Core\Extensions\INamedTypeSymbolExtensions.cs\INamedTypeSymbolExtensions.cs (1)
573IPropertySymbol { IsWithEvents: false } => true,
Microsoft.VisualStudio.LanguageServices.CSharp.UnitTests (1)
GlyphExtensionsTests.cs (1)
253propertyMock.SetupGet(s => s.IsWithEvents).Returns(isWithEvents);
Microsoft.VisualStudio.LanguageServices.Implementation (1)
CodeModel\AbstractCodeModelService.cs (1)
241return propertySymbol.IsWithEvents
Microsoft.VisualStudio.LanguageServices.VisualBasic (3)
CodeModel\MethodXML\MethodXmlBuilder.vb (1)
326If propertySymbol IsNot Nothing AndAlso propertySymbol.IsWithEvents Then
CodeModel\VisualBasicCodeModelService.vb (2)
1400If propertySymbol?.IsWithEvents Then 1452If TryCast(symbol, IPropertySymbol)?.IsWithEvents Then