Code:
/ Dotnetfx_Win7_3.5.1 / Dotnetfx_Win7_3.5.1 / 3.5.1 / DEVDIV / depot / DevDiv / releases / whidbey / NetFXspW7 / ndp / fx / src / Services / Monitoring / system / Diagnosticts / ProcessModule.cs / 1 / ProcessModule.cs
//------------------------------------------------------------------------------ //// Copyright (c) Microsoft Corporation. All rights reserved. // //----------------------------------------------------------------------------- namespace System.Diagnostics { using System.Diagnostics; using System; using System.Collections; using System.IO; using Microsoft.Win32; using System.ComponentModel; using System.Globalization; using System.Security.Permissions; // using System.Windows.Forms; ////// A process module component represents a DLL or EXE loaded into /// a particular process. Using this component, you can determine /// information about the module. /// [Designer("System.Diagnostics.Design.ProcessModuleDesigner, " + AssemblyRef.SystemDesign)] [PermissionSet(SecurityAction.LinkDemand, Name="FullTrust")] [PermissionSet(SecurityAction.InheritanceDemand, Name="FullTrust")] public class ProcessModule : Component { internal ModuleInfo moduleInfo; FileVersionInfo fileVersionInfo; ////// Initialize the module. /// ///internal ProcessModule(ModuleInfo moduleInfo) { this.moduleInfo = moduleInfo; GC.SuppressFinalize(this); } /// /// Make sure we are running on NT. /// ///internal void EnsureNtProcessInfo() { if (Environment.OSVersion.Platform != PlatformID.Win32NT) throw new PlatformNotSupportedException(SR.GetString(SR.WinNTRequired)); } /// /// Returns the name of the Module. /// [MonitoringDescription(SR.ProcModModuleName)] public string ModuleName { get { return moduleInfo.baseName; } } ////// Returns the full file path for the location of the module. /// [MonitoringDescription(SR.ProcModFileName)] public string FileName { get { return moduleInfo.fileName; } } ////// Returns the memory address that the module was loaded at. /// [MonitoringDescription(SR.ProcModBaseAddress)] public IntPtr BaseAddress { get { return moduleInfo.baseOfDll; } } ////// Returns the amount of memory required to load the module. This does /// not include any additional memory allocations made by the module once /// it is running; it only includes the size of the static code and data /// in the module file. /// [MonitoringDescription(SR.ProcModModuleMemorySize)] public int ModuleMemorySize { get { return moduleInfo.sizeOfImage; } } ////// Returns the memory address for function that runs when the module is /// loaded and run. /// [MonitoringDescription(SR.ProcModEntryPointAddress)] public IntPtr EntryPointAddress { get { EnsureNtProcessInfo(); return moduleInfo.entryPoint; } } ////// Returns version information about the module. /// [Browsable(false)] public FileVersionInfo FileVersionInfo { get { if (fileVersionInfo == null) fileVersionInfo = FileVersionInfo.GetVersionInfo(FileName); return fileVersionInfo; } } public override string ToString() { return String.Format(CultureInfo.CurrentCulture, "{0} ({1})", base.ToString(), this.ModuleName); } } } // File provided for Reference Use Only by Microsoft Corporation (c) 2007. //------------------------------------------------------------------------------ //// Copyright (c) Microsoft Corporation. All rights reserved. // //----------------------------------------------------------------------------- namespace System.Diagnostics { using System.Diagnostics; using System; using System.Collections; using System.IO; using Microsoft.Win32; using System.ComponentModel; using System.Globalization; using System.Security.Permissions; // using System.Windows.Forms; ////// A process module component represents a DLL or EXE loaded into /// a particular process. Using this component, you can determine /// information about the module. /// [Designer("System.Diagnostics.Design.ProcessModuleDesigner, " + AssemblyRef.SystemDesign)] [PermissionSet(SecurityAction.LinkDemand, Name="FullTrust")] [PermissionSet(SecurityAction.InheritanceDemand, Name="FullTrust")] public class ProcessModule : Component { internal ModuleInfo moduleInfo; FileVersionInfo fileVersionInfo; ////// Initialize the module. /// ///internal ProcessModule(ModuleInfo moduleInfo) { this.moduleInfo = moduleInfo; GC.SuppressFinalize(this); } /// /// Make sure we are running on NT. /// ///internal void EnsureNtProcessInfo() { if (Environment.OSVersion.Platform != PlatformID.Win32NT) throw new PlatformNotSupportedException(SR.GetString(SR.WinNTRequired)); } /// /// Returns the name of the Module. /// [MonitoringDescription(SR.ProcModModuleName)] public string ModuleName { get { return moduleInfo.baseName; } } ////// Returns the full file path for the location of the module. /// [MonitoringDescription(SR.ProcModFileName)] public string FileName { get { return moduleInfo.fileName; } } ////// Returns the memory address that the module was loaded at. /// [MonitoringDescription(SR.ProcModBaseAddress)] public IntPtr BaseAddress { get { return moduleInfo.baseOfDll; } } ////// Returns the amount of memory required to load the module. This does /// not include any additional memory allocations made by the module once /// it is running; it only includes the size of the static code and data /// in the module file. /// [MonitoringDescription(SR.ProcModModuleMemorySize)] public int ModuleMemorySize { get { return moduleInfo.sizeOfImage; } } ////// Returns the memory address for function that runs when the module is /// loaded and run. /// [MonitoringDescription(SR.ProcModEntryPointAddress)] public IntPtr EntryPointAddress { get { EnsureNtProcessInfo(); return moduleInfo.entryPoint; } } ////// Returns version information about the module. /// [Browsable(false)] public FileVersionInfo FileVersionInfo { get { if (fileVersionInfo == null) fileVersionInfo = FileVersionInfo.GetVersionInfo(FileName); return fileVersionInfo; } } public override string ToString() { return String.Format(CultureInfo.CurrentCulture, "{0} ({1})", base.ToString(), this.ModuleName); } } } // File provided for Reference Use Only by Microsoft Corporation (c) 2007.
Link Menu

This book is available now!
Buy at Amazon US or
Buy at Amazon UK
- EntityWrapperFactory.cs
- InputLangChangeEvent.cs
- StylusButtonEventArgs.cs
- SwitchLevelAttribute.cs
- HtmlTernaryTree.cs
- BuildDependencySet.cs
- ColorConvertedBitmap.cs
- OdbcEnvironmentHandle.cs
- ImageCodecInfo.cs
- TriggerActionCollection.cs
- ContainerVisual.cs
- IdentityManager.cs
- MsmqBindingElementBase.cs
- SecurityTokenSerializer.cs
- WindowHideOrCloseTracker.cs
- ClientProxyGenerator.cs
- XPathNode.cs
- EncoderNLS.cs
- BindUriHelper.cs
- DataGridViewImageCell.cs
- ServiceBehaviorElementCollection.cs
- TreeNodeStyleCollection.cs
- CollectionBase.cs
- SelectionWordBreaker.cs
- ParseNumbers.cs
- BlockUIContainer.cs
- TextSelection.cs
- ContextMenu.cs
- FieldDescriptor.cs
- ServicePointManagerElement.cs
- SerializationInfoEnumerator.cs
- QuerySetOp.cs
- BooleanAnimationUsingKeyFrames.cs
- DynamicDataRouteHandler.cs
- DataMisalignedException.cs
- SkipQueryOptionExpression.cs
- XsdCachingReader.cs
- GenericQueueSurrogate.cs
- SecurityDocument.cs
- InkSerializer.cs
- HitTestFilterBehavior.cs
- CompositeCollection.cs
- ConsoleTraceListener.cs
- XmlILIndex.cs
- LinearKeyFrames.cs
- Char.cs
- UnaryNode.cs
- Debug.cs
- DataGridViewRowContextMenuStripNeededEventArgs.cs
- KeyProperty.cs
- DocumentPageTextView.cs
- ConfigurationValidatorAttribute.cs
- CheckBox.cs
- TrustLevel.cs
- ImagingCache.cs
- SerializationFieldInfo.cs
- SafeNativeMethodsCLR.cs
- Compiler.cs
- EmbeddedMailObjectsCollection.cs
- RuleValidation.cs
- PerfCounters.cs
- HtmlCommandAdapter.cs
- XmlSchemaValidationException.cs
- CachedPathData.cs
- PathFigure.cs
- RelationshipNavigation.cs
- XhtmlTextWriter.cs
- HMACRIPEMD160.cs
- AspNetSynchronizationContext.cs
- DataGridViewCellConverter.cs
- GeneralTransform3D.cs
- ArrayExtension.cs
- HttpContextBase.cs
- TextRange.cs
- PointValueSerializer.cs
- XmlLanguage.cs
- WebServiceMethodData.cs
- ToolboxItemFilterAttribute.cs
- Trace.cs
- BamlLocalizer.cs
- UpWmlPageAdapter.cs
- SvcMapFileSerializer.cs
- DataGridViewTopLeftHeaderCell.cs
- CollectionChangedEventManager.cs
- FolderNameEditor.cs
- QilUnary.cs
- SqlUnionizer.cs
- HttpHandlersSection.cs
- FontNameEditor.cs
- LoginCancelEventArgs.cs
- HttpCachePolicyWrapper.cs
- DotExpr.cs
- SessionChannels.cs
- TracingConnectionListener.cs
- ComPlusServiceLoader.cs
- DocumentViewer.cs
- IPipelineRuntime.cs
- SafeRightsManagementSessionHandle.cs
- SiteMapProvider.cs
- MessageTransmitTraceRecord.cs