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