C# Класс ImageProcessor.Configuration.NativeBinaryFactory

Controls the loading and unloading of any native binaries required by ImageProcessor.
Наследование: IDisposable
Показать файл Открыть проект

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

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

Disposes the object and frees resources for the Garbage Collector.

NativeBinaryFactory ( ) : System

Initializes a new instance of the NativeBinaryFactory class.

RegisterNativeBinary ( string name, byte resourceBytes ) : void

Registers any embedded native (unmanaged) binaries required by ImageProcessor.

Защищенные методы

Метод Описание
Dispose ( bool disposing ) : void

Disposes the object and frees resources for the Garbage Collector.

Приватные методы

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

Frees the reference to the native binaries.

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

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

Disposes the object and frees resources for the Garbage Collector.
public Dispose ( ) : void
Результат void

Dispose() защищенный Метод

Disposes the object and frees resources for the Garbage Collector.
protected Dispose ( bool disposing ) : void
disposing bool If true, the object gets disposed.
Результат void

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

Initializes a new instance of the NativeBinaryFactory class.
public NativeBinaryFactory ( ) : System
Результат System

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

Registers any embedded native (unmanaged) binaries required by ImageProcessor.
/// Thrown if the binary cannot be registered. ///
public RegisterNativeBinary ( string name, byte resourceBytes ) : void
name string /// The name of the native binary. ///
resourceBytes byte /// The resource bytes containing the native binary. ///
Результат void