C# 클래스 ImageProcessor.Configuration.NativeBinaryFactory

Controls the loading and unloading of any native binaries required by ImageProcessor.
상속: IDisposable
파일 보기 프로젝트 열기: JimBobSquarePants/ImageProcessor

공개 메소드들

메소드 설명
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