RuntimeReflectionExtensions.GetRuntimeEvents Method

[ This article is for Windows Phone 8 developers. If you’re developing for Windows 10, see the latest documentation. ]

Retrieves a collection that represents all the events defined on a specified type.

Namespace:  System.Reflection
Assembly:  mscorlib (in mscorlib.dll)

Syntax

<ExtensionAttribute> _
Public Shared Function GetRuntimeEvents ( _
    type As Type _
) As IEnumerable(Of EventInfo)
public static IEnumerable<EventInfo> GetRuntimeEvents(
    this Type type
)

Parameters

Return Value

Type: System.Collections.Generic..::.IEnumerable<(Of <(EventInfo>)>)
A collection of events for the specified type.

Usage Note

In Visual Basic and C#, you can call this method as an instance method on any object of type Type. When you use instance method syntax to call this method, omit the first parameter.

Remarks

This method returns all events defined on the specified type, including inherited, non-public, instance, and static events.

Version Information

Windows Phone OS

Supported in: 8.1, 8.0

See Also

Reference

RuntimeReflectionExtensions Class

System.Reflection Namespace