This topic has not yet been rated - Rate this topic

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.

Namespace:  System.Reflection
Assembly:  mscorlib (in mscorlib.dll)
public virtual MethodInfo[] GetOtherMethods(
	bool nonPublic
)

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.
ExceptionCondition
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.

.NET Framework

Supported in: 4.5, 4, 3.5, 3.0, 2.0

.NET Framework Client Profile

Supported in: 4, 3.5 SP1

Windows 8, Windows Server 2012, Windows 7, Windows Vista SP2, Windows Server 2008 (Server Core Role not supported), Windows Server 2008 R2 (Server Core Role supported with SP1 or later; Itanium not supported)

The .NET Framework does not support all versions of every platform. For a list of the supported versions, see .NET Framework System Requirements.

Did you find this helpful?
(1500 characters remaining)
© 2013 Microsoft. All rights reserved.