The topic you requested is included in another documentation set. For convenience, it's displayed below. Choose Switch to see the topic in its original location.
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)
Process myProcess = new Process(); // Get the process start information of notepad. ProcessStartInfo myProcessStartInfo = 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); ProcessModule myProcessModule; // Get all the modules associated with 'myProcess'. ProcessModuleCollection myProcessModuleCollection = myProcess.Modules; Console.WriteLine("Properties of the modules associated " +"with 'notepad' are:"); // Display the properties of each of the modules. for( int i=0;i<myProcessModuleCollection.Count;i++) { myProcessModule = myProcessModuleCollection[i]; Console.WriteLine("The moduleName is " +myProcessModule.ModuleName); Console.WriteLine("The " +myProcessModule.ModuleName + "'s base address is: " +myProcessModule.BaseAddress); Console.WriteLine("The " +myProcessModule.ModuleName + "'s Entry point address is: " +myProcessModule.EntryPointAddress); Console.WriteLine("The " +myProcessModule.ModuleName + "'s File name is: " +myProcessModule.FileName); } // 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); Console.WriteLine("The process's main module's Entry point address is: " +myProcessModule.EntryPointAddress); 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
Show: