ApplicationManager.GetRunningApplications メソッド
定義
重要
一部の情報は、リリース前に大きく変更される可能性があるプレリリースされた製品に関するものです。 Microsoft は、ここに記載されている情報について、明示または黙示を問わず、一切保証しません。
実行中のアプリケーションのスナップショットを返します。
public:
cli::array <System::Web::Hosting::ApplicationInfo ^> ^ GetRunningApplications();
public System.Web.Hosting.ApplicationInfo[] GetRunningApplications ();
member this.GetRunningApplications : unit -> System.Web.Hosting.ApplicationInfo[]
Public Function GetRunningApplications () As ApplicationInfo()
戻り値
この ApplicationInfo インスタンスによって管理されているアプリケーションに関する情報を格納している ApplicationManager オブジェクトの配列。
例
次のコード例では、 メソッドを GetRunningApplications 使用して、インスタンスによって管理されるアプリケーションに関する情報を ApplicationManager 表示します。
<%@ Page Language="C#" %>
<%@ 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 void Page_PreRender(object sender, EventArgs e)
{
ApplicationManager appManager = ApplicationManager.GetApplicationManager();
ApplicationInfo [] appInfo = appManager.GetRunningApplications();
GridView1.DataSource = appInfo;
GridView1.DataBind();
}
</script>
<html xmlns="http://www.w3.org/1999/xhtml">
<head runat="server">
<meta http-equiv="Content-Type" content="text/html" />
<title>Application Info sample</title>
</head>
<body>
<form id="form1" runat="server">
<asp:GridView ID="GridView1" runat="server">
</asp:GridView>
</form>
</body>
</html>
<%@ 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>
適用対象
GitHub で Microsoft と共同作業する
このコンテンツのソースは GitHub にあります。そこで、issue や pull request を作成および確認することもできます。 詳細については、共同作成者ガイドを参照してください。
.NET