EventInfo.GetOtherMethods Method (Boolean)
Returns the methods that have been associated with the event in metadata using the .other directive, specifying whether to include non-public methods.
Assembly: mscorlib (in mscorlib.dll)
Parameters
- nonPublic
- Type: System.Boolean
true to include non-public methods; otherwise, false.
Return Value
Type: System.Reflection.MethodInfo[]An array of EventInfo objects representing methods that have been associated with an event in metadata by using the .other directive. If there are no methods matching the specification, an empty array is returned.
| Exception | Condition |
|---|---|
| NotImplementedException | This method is not implemented. |
The metadata for an event can associate four kinds of methods with the event:
The .addon directive specifies the method used to add event handlers. Use the GetAddMethod method to retrieve an EventInfo for that method.
The .removeon directive specifies the method used to detach event handlers. Use the GetRemoveMethod method to retrieve an EventInfo for this method.
The .fire directive specifies the method used to raise the event. Use the GetRaiseMethod method to retrieve an EventInfo for this method.
The .other directive specifies any other methods associated with the event. Use the GetOtherMethods method to retrieve an array of EventInfo objects for those methods.
The methods associated with an event using the .other directive have no special significance to the runtime. The C# and Visual Basic compilers do not use the .other directive.
Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows XP SP2 x64 Edition, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2
The .NET Framework does not support all versions of every platform. For a list of the supported versions, see .NET Framework System Requirements.