1 write to _innerEventInfo
System.Runtime.InteropServices (1)
System\Runtime\InteropServices\ComAwareEventInfo.cs (1)
24_innerEventInfo = type.GetEvent(eventName)!;
18 references to _innerEventInfo
System.Runtime.InteropServices (18)
System\Runtime\InteropServices\ComAwareEventInfo.cs (18)
35GetDataForComInvocation(_innerEventInfo, out Guid sourceIid, out int dispid); 41_innerEventInfo.AddEventHandler(target, handler); 53GetDataForComInvocation(_innerEventInfo, out Guid sourceIid, out int dispid); 60_innerEventInfo.RemoveEventHandler(target, handler); 64public override EventAttributes Attributes => _innerEventInfo.Attributes; 66public override MethodInfo? GetAddMethod(bool nonPublic) => _innerEventInfo.GetAddMethod(nonPublic); 68public override MethodInfo[] GetOtherMethods(bool nonPublic) => _innerEventInfo.GetOtherMethods(nonPublic); 70public override MethodInfo? GetRaiseMethod(bool nonPublic) => _innerEventInfo.GetRaiseMethod(nonPublic); 72public override MethodInfo? GetRemoveMethod(bool nonPublic) => _innerEventInfo.GetRemoveMethod(nonPublic); 74public override Type? DeclaringType => _innerEventInfo.DeclaringType; 78return _innerEventInfo.GetCustomAttributes(attributeType, inherit); 83return _innerEventInfo.GetCustomAttributes(inherit); 86public override IList<CustomAttributeData> GetCustomAttributesData() => _innerEventInfo.GetCustomAttributesData(); 90return _innerEventInfo.IsDefined(attributeType, inherit); 93public override int MetadataToken => _innerEventInfo.MetadataToken; 95public override Module Module => _innerEventInfo.Module; 97public override string Name => _innerEventInfo.Name; 99public override Type? ReflectedType => _innerEventInfo.ReflectedType;