C# Class Castle.Facilities.EventWiring.WireInfo

Represents the information about an event.
Show file Open project: castleproject/Windsor

Public Methods

Method Description
Equals ( object obj ) : bool

Determines whether the specified is equal to the current .

GetHashCode ( ) : int

Serves as a hash function for a particular type.

WireInfo ( string eventName, string handler ) : System

Initializes a new instance of the WireInfo class.

Method Details

Equals() public method

Determines whether the specified is equal to the current .
public Equals ( object obj ) : bool
obj object The to compare with the current .
return bool

GetHashCode() public method

Serves as a hash function for a particular type.
public GetHashCode ( ) : int
return int

WireInfo() public method

Initializes a new instance of the WireInfo class.
public WireInfo ( string eventName, string handler ) : System
eventName string Name of the event.
handler string The name of the handler method.
return System