ProcessInfo Class
Assembly: System.Web (in system.web.dll)
This class returns information about ASP.NET worker processes that are running under the ASP.NET process model. Objects of this type are returned by the static methods ProcessModelInfo.GetCurrentProcessInfo and ProcessModelInfo.GetHistory. These methods are the only useful ways to create an initialized object.
Note: |
|---|
| If you are using Microsoft Internet Information Services (IIS) 6.0, process metrics returned by the ProcessInfo classes are available only if you are running in IIS 5.0 isolation mode. If you are using IIS 6.0 in worker process isolation mode, the ASP.NET process model is disabled and an HttpException exception is thrown when you access ProcessInfo members. |
The following code example demonstrates using the Age, PeakMemoryUsed, ProcessID, RequestCount, ShutdownReason, StartTime and Status properties of the ProcessInfo class. The example displays a LinkButton. When the LinkButton is clicked, the current process information is displayed.
<%@ Page language="vb" AutoEventWireup="false" %> <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml" > <head> <title>ASP.NET Example</title> <script language="vb" runat="server"> Sub GetProcessInfo(sender As Object, e As System.EventArgs) Dim pi As ProcessInfo 'Get information about the current process. pi = ProcessModelInfo.GetCurrentProcessInfo() Literal1.Text = "<p>Age: " & pi.Age.ToString & "</p>" Literal1.Text = Literal1.Text & "<p>PeakMemoryUsed: " & pi.PeakMemoryUsed.ToString & "</p>" Literal1.Text = Literal1.Text & "<p>ProcessID: " & pi.ProcessID.ToString & "</p>" Literal1.Text = Literal1.Text & "<p>RequestCount: " & pi.RequestCount.ToString & "</p>" Literal1.Text = Literal1.Text & "<p>ShutdownReason: " & pi.ShutdownReason.ToString & "</p>" Literal1.Text = Literal1.Text & "<p>StartTime: " & pi.StartTime.ToString & "</p>" Literal1.Text = Literal1.Text & "<p>Status: " & pi.Status.ToString & "</p>" End Sub </script> </head> <body> <form id="WebForm2" method="post" runat="server"> <asp:button id="Button1" OnClick="GetProcessInfo" runat="server" Text="Get Process Info"></asp:button> <asp:Literal id="Literal1" runat="server"></asp:Literal> </form> </body> </html>
- AspNetHostingPermission for operating in a hosted environment. Demand value: LinkDemand; Permission value: Minimal.
- AspNetHostingPermission for operating in a hosted environment. Demand value: InheritanceDemand; Permission value: Minimal.
Reference
ProcessInfo MembersSystem.Web Namespace
Note: