ProcessModule Class
.NET Framework 2.0
Represents a.dll or .exe file that is loaded into a particular process.
Namespace: System.Diagnostics
Assembly: System (in system.dll)
Assembly: System (in system.dll)
Dim myProcess As New Process() ' Get the process start information of notepad. Dim myProcessStartInfo As New ProcessStartInfo("notepad.exe") ' Assign 'StartInfo' of notepad to 'StartInfo' of 'myProcess' object. myProcess.StartInfo = myProcessStartInfo ' Create a notepad. myProcess.Start() System.Threading.Thread.Sleep(1000) Dim myProcessModule As ProcessModule ' Get all the modules associated with 'myProcess'. Dim myProcessModuleCollection As ProcessModuleCollection = myProcess.Modules Console.WriteLine("Properties of the modules associated " + _ "with 'notepad' are:") ' Display the properties of each of the modules. Dim i As Integer For i = 0 To myProcessModuleCollection.Count - 1 myProcessModule = myProcessModuleCollection(i) Console.WriteLine("The moduleName is " + myProcessModule.ModuleName) Console.WriteLine("The " + myProcessModule.ModuleName.ToString() + _ "'s base address is: " + myProcessModule.BaseAddress.ToString()) Console.WriteLine("The " + myProcessModule.ModuleName.ToString() + _ "'s Entry point address is: " + myProcessModule.EntryPointAddress.ToString()) Console.WriteLine("The " + myProcessModule.ModuleName + _ "'s File name is: " + myProcessModule.FileName) Next i ' Get the main module associated with 'myProcess'. myProcessModule = myProcess.MainModule ' Display the properties of the main module. Console.WriteLine("The process's main moduleName is: " + myProcessModule.ModuleName) Console.WriteLine("The process's main module's base address is: " + _ myProcessModule.BaseAddress.ToString()) Console.WriteLine("The process's main module's Entry point address is: " + _ myProcessModule.EntryPointAddress.ToString()) Console.WriteLine("The process's main module's File name is: " + _ myProcessModule.FileName) myProcess.CloseMainWindow()
System.Object
System.MarshalByRefObject
System.ComponentModel.Component
System.Diagnostics.ProcessModule
System.MarshalByRefObject
System.ComponentModel.Component
System.Diagnostics.ProcessModule
Windows 98, Windows 2000 SP4, Windows Millennium Edition, Windows Server 2003, Windows XP Media Center Edition, Windows XP Professional x64 Edition, Windows XP SP2, Windows XP Starter Edition
The .NET Framework does not support all versions of every platform. For a list of the supported versions, see System Requirements.
Community Additions
ADD
Show: