Interface IRaisable<T, U, V>
- Namespace
- ElectricDrill.SoapRpgFramework.Events
- Assembly
- com.electricdrill.soap-rpg-framework.Runtime.dll
Interface for objects that can be raised with three parameters of types T, U, and V. Defines the contract for events that carry three pieces of data.
public interface IRaisable<T, U, V>
Type Parameters
TThe type of the first parameter.
UThe type of the second parameter.
VThe type of the third parameter.
Methods
Raise(T, U, V)
Raises the event with the specified contexts.
void Raise(T context1, U context2, V context3)
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.