Click or drag to resize

ExtensionMethodsRaiseEventT Method (MemberValueElementChangedHandler, Object, T)

Raises the event which is represented by the handler specified.

Namespace:  SD.Tools.Algorithmia.GeneralDataStructures
Assembly:  SD.Tools.Algorithmia (in SD.Tools.Algorithmia.dll) Version: 1.4.0.0 (1.4.19.0711)
Syntax
public static void RaiseEvent<T>(
	this MemberValueElementChangedHandler handler,
	Object sender,
	T arguments
)
where T : EventArgs

Parameters

handler
Type: SD.Tools.Algorithmia.GeneralDataStructuresMemberValueElementChangedHandler
The handler of the event to raise.
sender
Type: SystemObject
The sender of the event.
arguments
Type: T
The arguments to pass to the handler.

Type Parameters

T
type of the event args

Usage Note

In Visual Basic and C#, you can call this method as an instance method on any object of type MemberValueElementChangedHandler. When you use instance method syntax to call this method, omit the first parameter. For more information, see Extension Methods (Visual Basic) or Extension Methods (C# Programming Guide).
See Also