1 instantiation of SourceEventSymbol
Microsoft.CodeAnalysis.VisualBasic (1)
Symbols\Source\SourceMemberContainerTypeSymbol.vb (1)
2679Dim propertySymbol = New SourceEventSymbol(Me, binder, syntax, blockSyntaxOpt, diagBag)
25 references to SourceEventSymbol
Microsoft.CodeAnalysis.VisualBasic (22)
Binding\BinderFactory.vb (1)
395Dim eventSymbol = DirectCast(SourceMethodSymbol.FindSymbolFromSyntax(methodSyntax, _tree, containingType), SourceEventSymbol)
Compilation\DocumentationComments\DocumentationCommentCompiler.Event.vb (2)
30Dim sourceEvent = TryCast(symbol, SourceEventSymbol) 37Private Sub WriteDocumentationCommentForEvent([event] As SourceEventSymbol)
SymbolDisplay\SymbolDisplayVisitor.Members.vb (1)
142Dim sourceSymbol = TryCast(symbol, SourceEventSymbol)
Symbols\Source\CustomEventAccessorSymbol.vb (2)
17Private ReadOnly _event As SourceEventSymbol 22[event] As SourceEventSymbol,
Symbols\Source\ImplementsHelper.vb (1)
55Dim sourceEvent = TryCast(sourceSym, SourceEventSymbol)
Symbols\Source\SourceMemberContainerTypeSymbol.vb (1)
2893Private Sub AddEventAndAccessors(eventSymbol As SourceEventSymbol,
Symbols\Source\SynthesizedEventAccessorSymbol.vb (8)
18Inherits SynthesizedAccessor(Of SourceEventSymbol) 25[event] As SourceEventSymbol) 30Private ReadOnly Property SourceEvent As SourceEventSymbol 113Protected Shared Function ConstructFieldLikeEventAccessorBody(eventSymbol As SourceEventSymbol, 132Private Shared Function ConstructFieldLikeEventAccessorBody_WinRT(eventSymbol As SourceEventSymbol, 268Private Shared Function ConstructFieldLikeEventAccessorBody_Regular(eventSymbol As SourceEventSymbol, 537[event] As SourceEventSymbol) 552[event] As SourceEventSymbol)
Symbols\Source\SynthesizedEventBackingFieldSymbol.vb (2)
16Inherits SynthesizedBackingFieldBase(Of SourceEventSymbol) 20Public Sub New(propertyOrEvent As SourceEventSymbol, name As String, isShared As Boolean)
Symbols\Symbol_Attributes.vb (1)
520Me.Kind = SymbolKind.Event AndAlso DirectCast(Me, SourceEventSymbol).AssociatedField IsNot Nothing Then
Symbols\SynthesizedSymbols\SynthesizedEventDelegateSymbol.vb (3)
107Dim asEvent = TryCast(e, SourceEventSymbol) 135Dim eventInCurrentContext As SourceEventSymbol = Nothing 140Dim asEvent = TryCast(e, SourceEventSymbol)
Microsoft.CodeAnalysis.VisualBasic.Symbol.UnitTests (3)
SymbolsTests\Metadata\WinMdEventTest.vb (2)
943Assert.IsType(Of SourceEventSymbol)(implementingNormalEvent) 944Assert.IsType(Of SourceEventSymbol)(implementingWinRTEvent)
SymbolsTests\Retargeting\RetargetingTests.vb (1)
2183CheckTypes(CType(sourceType.GetMember("xEvent"), SourceEventSymbol).Type, CType(retargetingType.GetMember("xEvent"), RetargetingEventSymbol).Type)