class EventHandlerList

in global :: System . ComponentModel

Provides a simple list of delegates. This class cannot be inherited.


public void AddHandler( object key, Delegate value )

Adds a delegate to the list.

  • key The object that owns the event.
  • value The delegate to add to the list.

public void AddHandlers( EventHandlerList listToAddFrom )

Adds a list of delegates to the current list.

  • listToAddFrom The list to add.

public void RemoveHandler( object key, Delegate value )

Removes a delegate from the list.

  • key The object that owns the event.
  • value The delegate to remove from the list.

public Delegate Item { get; set; }

😔 No documentation found.

public void Dispose( )

😔 No documentation found.

public Type GetType( )

😔 No documentation found.

public string ToString( )

😔 No documentation found.

public bool Equals( object obj )

😔 No documentation found.

public int GetHashCode( )

😔 No documentation found.

public EventHandlerList( )

😔 No documentation found.