1 implementation of EventReference
Microsoft.CodeAnalysis (1)
Generated\Operations.Generated.cs (1)
4643public IEventReferenceOperation EventReference { get; }
9 references to EventReference
Microsoft.CodeAnalysis (7)
Operations\ControlFlowGraphBuilder.cs (7)
7114VisitInstanceWithArguments(operation.EventReference.Event.IsStatic ? null : operation.EventReference.Instance, operation.Arguments); 7115var visitedEventReference = new EventReferenceOperation(operation.EventReference.Event, operation.EventReference.ConstrainedToType, visitedInstance, 7116semanticModel: null, operation.EventReference.Syntax, operation.EventReference.Type, IsImplicit(operation.EventReference));
Microsoft.CodeAnalysis.Test.Utilities (2)
Compilation\OperationTreeVerifier.cs (1)
2048Visit(operation.EventReference, header: "Event Reference");
Compilation\TestOperationVisitor.cs (1)
1602AssertEx.Equal(new IOperation[] { operation.EventReference }.Concat(operation.Arguments), operation.ChildOperations);