EnumBuilder::GetEvent Method (String^, BindingFlags)

 

Returns the event with the specified name.

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

public:
virtual EventInfo^ GetEvent(
	String^ name,
	BindingFlags bindingAttr
) override

Parameters

name
Type: System::String^

The name of the event to get.

bindingAttr
Type: System.Reflection::BindingFlags

This invocation attribute. This must be a bit flag from BindingFlags : InvokeMethod, NonPublic, and so on.

Return Value

Type: System.Reflection::EventInfo^

Returns an EventInfo object representing the event declared or inherited by this type with the specified name. If there are no matches, null is returned.

Exception Condition
NotSupportedException

This method is not currently supported in types that are not complete.

As a workaround, to retrieve the event of a finished type, retrieve the type using Type::GetType or Assembly::GetType and use reflection on the retrieved type.

.NET Framework
Available since 1.1
Silverlight
Available since 2.0
Return to top
Show: