RuntimeReflectionExtensions.GetRuntimeEvent Method
[ This article is for Windows Phone 8 developers. If you’re developing for Windows 10, see the latest documentation. ]
Retrieves an object that represents the specified event.
Assembly: mscorlib (in mscorlib.dll)
'Declaration <ExtensionAttribute> _ Public Shared Function GetRuntimeEvent ( _ type As Type, _ name As String _ ) As EventInfo
Parameters
- type
- Type: System.Type
The type that contains the event.
- name
- Type: System.String
The name of the event.
Return Value
Type: System.Reflection.EventInfoAn object that represents the specified event, or Nothing if the event is not found.
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.
Show: