C# Класс Binarysharp.MemoryManagement.Modules.RemoteModule

Class repesenting a module in the remote process.
Наследование: RemoteRegion
Показать файл Открыть проект Примеры использования класса

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

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

Ejects the loaded dynamic-link library (DLL) module.

FindFunction ( string functionName ) : RemoteFunction

Finds the specified function in the remote module.

Interesting article on how DLL loading works: http://msdn.microsoft.com/en-us/magazine/bb985014.aspx

ToString ( ) : string

Returns a string that represents the current object.

this ( string functionName ) : RemoteFunction

Gets the specified function in the remote module.

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

Метод Описание
InternalEject ( MemorySharp memorySharp, RemoteModule module ) : void

Frees the loaded dynamic-link library (DLL) module and, if necessary, decrements its reference count.

RemoteModule ( MemorySharp memorySharp, ProcessModule module ) : System

Initializes a new instance of the RemoteModule class.

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

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

Ejects the loaded dynamic-link library (DLL) module.
public Eject ( ) : void
Результат void

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

Finds the specified function in the remote module.
Interesting article on how DLL loading works: http://msdn.microsoft.com/en-us/magazine/bb985014.aspx
public FindFunction ( string functionName ) : RemoteFunction
functionName string The name of the function (case sensitive).
Результат RemoteFunction

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

Returns a string that represents the current object.
public ToString ( ) : string
Результат string

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

Gets the specified function in the remote module.
public this ( string functionName ) : RemoteFunction
functionName string The name of the function.
Результат RemoteFunction