GenericClass(T1, T2).SomethingHappened Event

Sandcastle XML Comments

Sandcastle XML Comments GuideGenericClassT1, T2SomethingHappened Event
This is an event that takes a generic argument.

Namespace: XMLCommentsExamples
Assembly: XMLCommentsExamples (in XMLCommentsExamples.dll) Version: 2014.1.26.0
Syntax
public event EventHandler<T2> SomethingHappened
Public Event SomethingHappened As EventHandler(Of T2)
public:
 event EventHandler<T2>^ SomethingHappened {
	void add (EventHandler<T2>^ value);
	void remove (EventHandler<T2>^ value);
}
member SomethingHappened : IEvent<EventHandler<'T2>,
    'T2>

Value

Type: SystemEventHandlerT2
Remarks
The delegate for this event is EventHandlerTEventArgs bound to the type specified by the generic type argument T2.
See Also