Table of Contents

Interface Sdl.IDisposeReceiver

Namespace
Sdl3Sharp
Assembly
Sdl3Sharp.dll

Provides a mechanism for objects to get informed when a Sdl instance gets disposed

public interface Sdl.IDisposeReceiver

Methods

DisposeFromSdl(Sdl)

When this method is called, it informs the implementer that the provided sdl instance is in the process of getting disposed

void DisposeFromSdl(Sdl sdl)

Parameters

sdl Sdl

The Sdl instance that gets disposed

Remarks

You don't need to deregister the implementer from the sdl instance here, as it would be during the process of the sdl instance getting disposed anyway. Though, it's not an error to do so.