C# Класс FoundationDB.Client.Native.UnmanagedLibrary

Native Library Loader
Наследование: IDisposable
Показать файл Открыть проект Примеры использования класса

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

Метод Описание
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