Table of Contents

Interface IRaisable<T>

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

Interface for objects that can be raised with one parameter of type T. Defines the contract for events that carry a single piece of data.

public interface IRaisable<T>

Type Parameters

T

The type of data this raisable object carries.

Methods

Raise(T)

Raises the event with the specified context.

void Raise(T context)

Parameters

context T

The data to pass when raising the event.