Table of Contents

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

T

The type of the first parameter.

U

The type of the second parameter.

V

The type of the third parameter.

W

The 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

context1 T

The first parameter to pass when raising the event.

context2 U

The second parameter to pass when raising the event.

context3 V

The third parameter to pass when raising the event.

context4 W

The fourth parameter to pass when raising the event.