Code:
/ DotNET / DotNET / 8.0 / untmp / whidbey / REDBITS / ndp / fx / src / xsp / System / Web / ProcessInfo.cs / 1 / ProcessInfo.cs
//------------------------------------------------------------------------------
//
// Copyright (c) Microsoft Corporation. All rights reserved.
//
//-----------------------------------------------------------------------------
/*
* ProcessInfo class
*/
namespace System.Web {
using System.Threading;
using System.Security.Permissions;
///
/// Provides enumerated values representing status of a process.
///
public enum ProcessStatus {
///
/// Specifies that the process is running.
///
Alive = 1,
///
/// Specifies that the process has begun shutting down.
///
ShuttingDown = 2,
///
/// Specifies the the process has been shut down.
///
ShutDown = 3,
///
/// Specifies that the process has been terminated.
///
Terminated = 4
}
///
/// Provides enumerated values representing the reason a process has shut
/// down.
///
public enum ProcessShutdownReason {
///
/// Specifies that the process has not been shut down.
///
None = 0, // alive
///
/// Specifies that the process has been shut down unexpectedly.
///
Unexpected = 1,
///
/// Specifies that the process request exceeded the limit on number of
/// processes.
///
RequestsLimit = 2,
///
/// Specifies that the process request exceeded the limit on number of
/// processes in que.
///
RequestQueueLimit = 3,
///
/// Specifies that the process timed out.
///
Timeout = 4,
///
/// Specifies that the process exceeded the limit on process idle time.
///
IdleTimeout = 5,
///
/// Specifies that the process exceeded the limit of memory available per process.
///
MemoryLimitExceeded = 6,
PingFailed = 7,
DeadlockSuspected = 8
}
///
/// Provides information on processes.
///
[AspNetHostingPermission(SecurityAction.LinkDemand, Level=AspNetHostingPermissionLevel.Minimal)]
[AspNetHostingPermission(SecurityAction.InheritanceDemand, Level=AspNetHostingPermissionLevel.Minimal)]
public class ProcessInfo {
///
/// Indicates the time a process was started.
///
public DateTime StartTime { get { return _StartTime;}}
///
/// Indicates the length of time the process has been running.
///
public TimeSpan Age { get { return _Age;}}
///
/// Indicates the process id of the process.
///
public int ProcessID { get { return _ProcessID;}}
public int RequestCount { get { return _RequestCount;}}
///
/// Indicates the current status of the process.
///
public ProcessStatus Status { get { return _Status;}}
///
/// Indicates the reason the process shut down.
///
public ProcessShutdownReason ShutdownReason { get { return _ShutdownReason;}}
///
/// Indicates the maximum amount of memory the process has used.
///
public int PeakMemoryUsed { get { return _PeakMemoryUsed;}}
private DateTime _StartTime;
private TimeSpan _Age;
private int _ProcessID;
private int _RequestCount;
private ProcessStatus _Status;
private ProcessShutdownReason _ShutdownReason;
private int _PeakMemoryUsed;
///
/// Sets internal information indicating the status of the process.
///
public void SetAll (DateTime startTime, TimeSpan age, int processID, int requestCount, ProcessStatus status,
ProcessShutdownReason shutdownReason, int peakMemoryUsed) {
_StartTime = startTime;
_Age = age;
_ProcessID = processID;
_RequestCount = requestCount;
_Status = status;
_ShutdownReason = shutdownReason;
_PeakMemoryUsed = peakMemoryUsed;
}
///
/// Initializes a new instance of the class and sets internal information
/// indicating the status of the process.
///
public ProcessInfo (DateTime startTime, TimeSpan age, int processID, int requestCount, ProcessStatus status,
ProcessShutdownReason shutdownReason, int peakMemoryUsed) {
_StartTime = startTime;
_Age = age;
_ProcessID = processID;
_RequestCount = requestCount;
_Status = status;
_ShutdownReason = shutdownReason;
_PeakMemoryUsed = peakMemoryUsed;
}
public ProcessInfo() {
}
}
}
Link Menu

This book is available now!
Buy at Amazon US or
Buy at Amazon UK
- UrlRoutingModule.cs
- DataBoundLiteralControl.cs
- HuffmanTree.cs
- ItemCheckedEvent.cs
- WebConfigurationFileMap.cs
- SQLResource.cs
- SetStoryboardSpeedRatio.cs
- ConstraintStruct.cs
- DataFormat.cs
- ConfigurationManagerInternalFactory.cs
- IssuedTokenClientBehaviorsElementCollection.cs
- Baml2006Reader.cs
- ThreadStaticAttribute.cs
- EmptyStringExpandableObjectConverter.cs
- BamlResourceContent.cs
- FlowDocumentFormatter.cs
- ProtectedConfigurationProviderCollection.cs
- SmiRequestExecutor.cs
- SystemWebCachingSectionGroup.cs
- SchemaTableOptionalColumn.cs
- CodeValidator.cs
- ZipIOBlockManager.cs
- ProxyFragment.cs
- NGCPageContentSerializerAsync.cs
- PrintPageEvent.cs
- DefaultParameterValueAttribute.cs
- FontInfo.cs
- AttributeAction.cs
- iisPickupDirectory.cs
- IsolatedStorageException.cs
- Sequence.cs
- ObjectViewListener.cs
- ToolStripDropDownItem.cs
- SQLDoubleStorage.cs
- XamlFilter.cs
- DataTableClearEvent.cs
- TypePropertyEditor.cs
- ConstantCheck.cs
- DataMisalignedException.cs
- PackageRelationship.cs
- StrokeCollectionConverter.cs
- SQLSingle.cs
- SafeLibraryHandle.cs
- TransformConverter.cs
- UnionCodeGroup.cs
- TimelineCollection.cs
- AsyncStreamReader.cs
- ListParagraph.cs
- xdrvalidator.cs
- EntityDataSourceDataSelection.cs
- OptimisticConcurrencyException.cs
- PathFigure.cs
- ModulesEntry.cs
- RefExpr.cs
- PageThemeParser.cs
- WindowsScrollBarBits.cs
- ClientScriptManagerWrapper.cs
- ScrollItemPatternIdentifiers.cs
- CssClassPropertyAttribute.cs
- ChildTable.cs
- SoapSchemaExporter.cs
- UnsafeNativeMethods.cs
- peernodeimplementation.cs
- IntranetCredentialPolicy.cs
- CodeRegionDirective.cs
- MSAAEventDispatcher.cs
- RemotingService.cs
- IISUnsafeMethods.cs
- ItemsControlAutomationPeer.cs
- AttributeCollection.cs
- SchemaLookupTable.cs
- Model3DCollection.cs
- EntryWrittenEventArgs.cs
- WebProxyScriptElement.cs
- StreamReader.cs
- ObjectListCommand.cs
- ThreadInterruptedException.cs
- ReaderWriterLockSlim.cs
- DataServiceOperationContext.cs
- ServiceNotStartedException.cs
- CardSpaceException.cs
- OleDbWrapper.cs
- Propagator.ExtentPlaceholderCreator.cs
- DataGridViewButtonColumn.cs
- ExceptionRoutedEventArgs.cs
- CallContext.cs
- GroupDescription.cs
- XmlNamespaceManager.cs
- WebException.cs
- DataGridViewDataErrorEventArgs.cs
- WinEventHandler.cs
- ChtmlSelectionListAdapter.cs
- SystemColors.cs
- ItemsControlAutomationPeer.cs
- Environment.cs
- Privilege.cs
- SecurityContext.cs
- CalendarDataBindingHandler.cs
- LogLogRecordEnumerator.cs
- MruCache.cs