WorkerProcess クラス
定義
重要
一部の情報は、リリース前に大きく変更される可能性があるプレリリースされた製品に関するものです。 Microsoft は、ここに記載されている情報について、明示または黙示を問わず、一切保証しません。
IIS 7 のすべてのワーカー プロセスに共通するメソッドとプロパティを定義します。
public ref class WorkerProcess sealed : Microsoft::Web::Administration::ConfigurationElement
public sealed class WorkerProcess : Microsoft.Web.Administration.ConfigurationElement
type WorkerProcess = class
inherit ConfigurationElement
Public NotInheritable Class WorkerProcess
Inherits ConfigurationElement
- 継承
例
次の例では、現在実行中のワーカー プロセスと関連付けられているプロパティを列挙する方法を示します。
using System;
using System.Collections.Generic;
using System.Text;
using Microsoft.Web.Administration;
using Microsoft.Web.Management;
namespace AdministrationSnippets
{
public class MicrosoftWebAdministrationWorkerProcess
{
public void EnumerateWorkerProcess()
{
ServerManager manager = new ServerManager();
foreach (WorkerProcess proc in manager.WorkerProcesses)
{
Console.WriteLine("WorkerProcess found: {0}", proc.ProcessId);
Console.WriteLine("\t|--AppPool : {0}", proc.AppPoolName);
Console.WriteLine("\t|--ProcGuid: {0}", proc.ProcessGuid);
Console.WriteLine("\t|--State : {0}", proc.State.ToString());
foreach (ApplicationDomain appDom in proc.ApplicationDomains)
{
Console.WriteLine(
"\t+--ApplicationDomain Found: {0}", appDom.Id);
Console.WriteLine(
"\t\t|--AppDomPhysPath: {0}", appDom.PhysicalPath);
Console.WriteLine(
"\t\t+--AppDomVirtPath: {0}", appDom.VirtualPath);
}
}
}
}
}
プロパティ
ApplicationDomains |
現在の ApplicationDomainCollection ワーカー プロセスで実行されているすべてのアプリケーション ドメインを含む オブジェクトを取得します。 |
AppPoolName |
ワーカー プロセスのアプリケーション プール識別子を取得します。 |
Attributes |
この要素の属性の一覧を含む構成属性コレクションを取得します。 (継承元 ConfigurationElement) |
ChildElements |
現在の要素のすべての子要素を取得します。 (継承元 ConfigurationElement) |
ElementTagName |
IIS 7 のすべてのワーカー プロセスに共通するメソッドとプロパティを定義します。 (継承元 ConfigurationElement) |
IsLocallyStored |
構成要素が特定の構成ファイルに格納されているかどうかを示す値を取得します。 (継承元 ConfigurationElement) |
Item[String] |
指定した名前の属性を取得または設定します。 (継承元 ConfigurationElement) |
Methods |
構成要素のメソッドのコレクションを取得します。 (継承元 ConfigurationElement) |
ProcessGuid |
ワーカー プロセスの GUID を取得します。 |
ProcessId |
ワーカー プロセスのプロセス識別子を取得します。 |
RawAttributes |
IIS 7 のすべてのワーカー プロセスに共通するメソッドとプロパティを定義します。 (継承元 ConfigurationElement) |
Schema |
現在の要素のスキーマを取得します。 (継承元 ConfigurationElement) |
State |
現在のワーカー プロセスの実行状態を取得します。 |