C# Класс Axiom.Plugins.SystemDrawingCodecs.Plugin

Наследование: Axiom.Core.IPlugin
Показать файл Открыть проект

Private Properties

Свойство Тип Описание

Открытые методы

Метод Описание
Initialize ( ) : void

Perform any tasks the plugin needs to perform on full system initialization.

An implementation must be supplied for this method. It is called just after the system is fully initialized (either after Root.Initialize if a window is created then, or after the first window is created) and therefore all rendersystem functionality is available at this time. You can use this hook to create any resources which are dependent on a rendersystem or have rendersystem-specific implementations.

Shutdown ( ) : void

Perform any tasks the plugin needs to perform when the system is shut down.

An implementation must be supplied for this method. This method is called just before key parts of the system are unloaded, such as rendersystems being shut down. You should use this hook to free up resources and decouple custom objects from the Axiom system, whilst all the instances of other plugins (e.g. rendersystems) still exist.

Описание методов

Initialize() публичный Метод

Perform any tasks the plugin needs to perform on full system initialization.
An implementation must be supplied for this method. It is called just after the system is fully initialized (either after Root.Initialize if a window is created then, or after the first window is created) and therefore all rendersystem functionality is available at this time. You can use this hook to create any resources which are dependent on a rendersystem or have rendersystem-specific implementations.
public Initialize ( ) : void
Результат void

Shutdown() публичный Метод

Perform any tasks the plugin needs to perform when the system is shut down.
An implementation must be supplied for this method. This method is called just before key parts of the system are unloaded, such as rendersystems being shut down. You should use this hook to free up resources and decouple custom objects from the Axiom system, whilst all the instances of other plugins (e.g. rendersystems) still exist.
public Shutdown ( ) : void
Результат void