C# 클래스 Binarysharp.MemoryManagement.Modules.RemoteModule

Class repesenting a module in the remote process.
상속: RemoteRegion
파일 보기 프로젝트 열기: ZenLulz/MemorySharp 1 사용 예제들

공개 메소드들

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