ApplicationInfo Class
Provides information about a running application. This class cannot be inherited.
Assembly: System.Web (in System.Web.dll)
The ApplicationInfo object is used by the ApplicationManager class for information about running applications.
The following code example gets an array of ApplicationInfo objects from the ApplicationManager object associated with the current process.
<%@ Page Language="VB" %> <%@ Import Namespace="System.Web.Hosting" %> <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <script runat="server"> Protected Sub Page_PreRender(ByVal sender As Object, ByVal e As EventArgs) Dim appManager As ApplicationManager appManager = ApplicationManager.GetApplicationManager() Dim appInfo As ApplicationInfo() appInfo = appManager.GetRunningApplications() GridView1.DataSource = appInfo GridView1.DataBind() End Sub </script> <html xmlns="http://www.w3.org/1999/xhtml" > <head runat="server"> <meta http-equiv="Content-Type" content="text/html" /> <title>Untitled Page</title> </head> <body> <form id="form1" runat="server"> <asp:GridView ID="GridView1" runat="server"> </asp:GridView> </form> </body> </html>
- AspNetHostingPermission
for operating in a hosted environment. Demand value: LinkDemand. Permission value: Minimal.
Windows 7, Windows Vista, Windows XP SP2, Windows XP Media Center Edition, Windows XP Professional x64 Edition, Windows XP Starter Edition, Windows Server 2008 R2, Windows Server 2008, Windows Server 2003, Windows Server 2000 SP4, Windows Millennium Edition, Windows 98
The .NET Framework and .NET Compact Framework do not support all versions of every platform. For a list of the supported versions, see .NET Framework System Requirements.