Table of Contents

Interface IRaisable<T, U>

Namespace
ElectricDrill.SoapRpgFramework.Events
Assembly
com.electricdrill.soap-rpg-framework.Runtime.dll

Interface for objects that can be raised with two parameters of types T and U. Defines the contract for events that carry two pieces of data.

public interface IRaisable<T, U>

Type Parameters

T

The type of the first parameter.

U

The type of the second parameter.

Methods

Raise(T, U)

Raises the event with the specified contexts.

void Raise(T context1, U context2)

Parameters

context1 T

The first parameter to pass when raising the event.

context2 U

The second parameter to pass when raising the event.