C# 클래스 FoundationDB.Client.Native.UnmanagedLibrary

Native Library Loader
상속: IDisposable
파일 보기 프로젝트 열기: BedeGaming/foundationdb-dotnet-client 1 사용 예제들

공개 메소드들

메소드 설명
Dispose ( ) : void

Call FreeLibrary on the unmanaged dll. All function pointers handed out from this class become invalid after this.

This is very dangerous because it suddenly invalidate everything retrieved from this dll. This includes any functions handed out via GetProcAddress, and potentially any objects returned from those functions (which may have an implemention in the dll).///

비공개 메소드들

메소드 설명
Load ( string path ) : UnmanagedLibrary
UnmanagedLibrary ( SafeLibraryHandle handle, string path ) : JetBrains.Annotations

Constructor to load a dll and be responible for freeing it.

메소드 상세

Dispose() 공개 메소드

Call FreeLibrary on the unmanaged dll. All function pointers handed out from this class become invalid after this.
This is very dangerous because it suddenly invalidate everything retrieved from this dll. This includes any functions handed out via GetProcAddress, and potentially any objects returned from those functions (which may have an implemention in the dll).///
public Dispose ( ) : void
리턴 void