Interface IRaisable<T, U, V, W>
- Namespace
- ElectricDrill.SoapRpgFramework.Events
- Assembly
- com.electricdrill.soap-rpg-framework.Runtime.dll
Interface for objects that can be raised with four parameters of types T, U, V, and W. Defines the contract for events that carry four pieces of data.
public interface IRaisable<T, U, V, W>
Type Parameters
TThe type of the first parameter.
UThe type of the second parameter.
VThe type of the third parameter.
WThe type of the fourth parameter.
Methods
Raise(T, U, V, W)
Raises the event with the specified contexts.
void Raise(T context1, U context2, V context3, W context4)
Parameters
context1TThe first parameter to pass when raising the event.
context2UThe second parameter to pass when raising the event.
context3VThe third parameter to pass when raising the event.
context4WThe fourth parameter to pass when raising the event.