6 overrides of IsWithEvents
Microsoft.CodeAnalysis.VisualBasic (6)
Symbols\Metadata\PE\PEPropertySymbol.vb (1)
254Public Overrides ReadOnly Property IsWithEvents As Boolean
Symbols\Retargeting\RetargetingPropertySymbol.vb (1)
77Public Overrides ReadOnly Property IsWithEvents As Boolean
Symbols\SignatureOnlyPropertySymbol.vb (1)
206Public Overrides ReadOnly Property IsWithEvents As Boolean
Symbols\Source\SourcePropertySymbol.vb (1)
743Public Overrides ReadOnly Property IsWithEvents As Boolean
Symbols\SubstitutedPropertySymbol.vb (1)
93Public Overrides ReadOnly Property IsWithEvents As Boolean
Symbols\SynthesizedSymbols\SynthesizedOverridingWitheventsProperty.vb (1)
69Public Overrides ReadOnly Property IsWithEvents As Boolean
16 references to IsWithEvents
Microsoft.CodeAnalysis.VisualBasic (16)
Binding\SyntheticBoundTrees\SynthesizedPropertyAccessorBase.vb (2)
38Dim isOverride As Boolean = propertySymbol.IsWithEvents AndAlso propertySymbol.IsOverrides 143If propertySymbol.IsWithEvents Then
SymbolDisplay\SymbolDisplayVisitor.Members.vb (1)
677Return vbProperty IsNot Nothing AndAlso vbProperty.IsWithEvents
Symbols\Metadata\PE\PEPropertySymbol.vb (1)
258SetIsWithEvents(MyBase.IsWithEvents)
Symbols\PropertySymbol.vb (1)
500Return overridden.IsWithEvents
Symbols\Retargeting\RetargetingPropertySymbol.vb (1)
79Return _underlyingProperty.IsWithEvents
Symbols\Source\OverrideHidingHelper.vb (1)
703If prop.IsImplicitlyDeclared AndAlso prop.IsWithEvents Then
Symbols\Source\SourceMemberMethodSymbol.vb (1)
877If prop IsNot Nothing AndAlso prop.IsWithEvents Then
Symbols\Source\SourceNamedTypeSymbol_ComClass.vb (1)
396If prop.IsWithEvents Then
Symbols\Source\SynthesizedWithEventsAccessorSymbol.vb (2)
21Debug.Assert([property].IsWithEvents) 204If DirectCast(Me.AssociatedSymbol, PropertySymbol).IsWithEvents Then
Symbols\SubstitutedPropertySymbol.vb (1)
95Return _originalDefinition.IsWithEvents
Symbols\SymbolExtensions.vb (4)
70If DirectCast(target, PropertySymbol).IsWithEvents Then 153Return Not propertySymbol.IsWithEvents 248Return symbol.Kind = SymbolKind.Property AndAlso DirectCast(symbol, PropertySymbol).IsWithEvents 257Return symbol.Kind = SymbolKind.Property AndAlso Not DirectCast(symbol, PropertySymbol).IsWithEvents