<PackageReference Include="Microsoft.CSharp" Version="4.4.1" />

EventSymbol

sealed class EventSymbol : Symbol
using System.Reflection; namespace Microsoft.CSharp.RuntimeBinder.Semantics { internal sealed class EventSymbol : Symbol { public EventInfo AssociatedEventInfo; public new bool isStatic; public bool isOverride; public CType type; public MethodSymbol methAdd; public MethodSymbol methRemove; public AggregateDeclaration declaration; public bool IsWindowsRuntimeEvent { get; set; } public AggregateDeclaration containingDeclaration() { return declaration; } } }