WebProcessInformationとは? わかりやすく解説

WebProcessInformation クラス

メモ : このクラスは、.NET Framework version 2.0新しく追加されたものです。

ASP.NETホストするワーカー プロセスに関する情報提供します

名前空間: System.Web.Management
アセンブリ: System.Web (system.web.dll 内)
構文構文

Public NotInheritable Class
 WebProcessInformation
Dim instance As WebProcessInformation
public sealed class WebProcessInformation
public ref class WebProcessInformation sealed
public final class WebProcessInformation
public final class WebProcessInformation
解説解説

運用および操作担当者は、ASP.NET Health Monitoring使用して配置されている Web アプリケーション管理できます。System.Web.Management 名前空間には、アプリケーションの状態データパッケージ化する状態イベント型、およびそのデータ処理するプロバイダ型が含まれます。また、状態イベント管理支援するサポート型も含まれます。

WebProcessInformation クラスインスタンスには、WebManagementEvent 型から派生した任意の型を使用して取得され情報格納されます。

この型が提供する保護され情報アクセスするには、アプリケーション適切なアクセス許可が必要です。

ASP.NETプロセス情報を含むエラー イベントログ記録する場合使用できる構成ファイル抜粋次に示します

<healthMonitoring 
  enabled="true" heartBeatInterval="0">

    <rules>
     <add 
       name="All Errors Default"
       eventName="All Errors"
       provider="EventLogProvider"
       profile="Default"
       minInterval="00:01:00" />
    </rules>

</healthMonitoring>
メモメモ

ほとんどの場合ASP.NET 状態監視型はそのまま実装使用できますASP.NET Health Monitoring system制御healthMonitoring 構成セクションに値を指定することによって行います。状態監視型の派生として独自のイベントおよびプロバイダ作成することもできますカスタム イベント クラス作成例については、このトピックの例を参照してください

使用例使用例

次のコードは、2 つ部分構成されます。最初は、ASP.NETWebProcessInformation 型のカスタム イベント使用できるようにする構成ファイル抜粋です。

次は、このカスタム イベント実装方法です。

作成するカスタム イベントは、必ず適切なタイミングで、つまり、置き換える対象システム状態イベントと同じタイミング発生するようにしてください

<healthMonitoring 
  enabled="true" heartBeatInterval="0">

    <eventMappings>
      <add  
        name="SampleProcessInformation" 
        type="SamplesAspNet.SampleWebProcessInformation, webprocessinformation, Version=1.0.1585.27289,
 Culture=neutral, PublicKeyToken=3648e5c763a8239f, processorArchitecture=MSIL"/>
    </eventMappings>
  
    <rules>
      <add 
        name="Custom Process Information"
        eventName="SampleProcessInformation" 
        provider="EventLogProvider"
        profile="Default"/>
    </rules>

</healthMonitoring>

WebProcessInformation 型を使用したカスタム イベント実装する方法次のコード示します

Imports System
Imports System.Text
Imports System.Web
Imports System.Web.Management


' Implements a custom WebBaseEvent type that 
' uses WebProcessInformation.

Public Class SampleWebProcessInformation
   Inherits WebBaseEvent
   Private eventInfo As StringBuilder
    Private Shared processInformation _
    As WebProcessInformation
   
   ' Instantiate SampleWebProcessInformation.    
    Public Sub New(ByVal
 msg As String, _
    ByVal eventSource As Object,
 ByVal eventCode As Integer)
        MyBase.New(msg, eventSource, eventCode)
        ' Perform custom initialization.
        eventInfo = New StringBuilder
        eventInfo.Append(String.Format( _
        "Event created at: {0}", _
        EventTime.ToString()))

    End Sub 'New
   
   ' Raises the event.
   Public Overrides Sub
 Raise()
      ' Perform custom processing. 
        eventInfo.Append(String.Format( _
        "Event raised at: {0}", _
        EventTime.ToString()))
      
      ' Raise the event.
      MyBase.Raise()
   End Sub 'Raise
   
   Public Function GetAccountName() As
 String
      ' Get the name of the account.
        Return String.Format("Account
 name: {0}", _
        processInformation.AccountName)
   End Function 'GetAccountName
   
   Public Function GetProcessId() As
 String
      ' Get the process identifier.
        Return String.Format("Process
 Id: {0}", _
        processInformation.ProcessID.ToString())
   End Function 'GetProcessId
   
   Public Function GetProcessName() As
 String
      ' Get the requests in execution.
        Return String.Format("Process
 name: {0}", _
        ProcessInformation.ProcessName)
   End Function 'GetProcessName
   
    'Formats Web request event information.
    Public Overrides Sub
 FormatCustomEventDetails( _
    ByVal formatter _
    As System.Web.Management.WebEventFormatter)
        MyBase.FormatCustomEventDetails(formatter)
   
        ' Add custom data.
        formatter.AppendLine("")
        formatter.AppendLine( _
        "Custom Process Information:")
        formatter.IndentationLevel += 1

        ' Display the process information.
        formatter.AppendLine(GetAccountName())
        formatter.AppendLine(GetProcessId())
        formatter.AppendLine(GetProcessName())
        formatter.IndentationLevel -= 1
        formatter.AppendLine(eventInfo.ToString())
    End Sub 'FormatToString

End Class 'SampleWebProcessInformation
 

using System;
using System.Text;
using System.Web;
using System.Web.Management;

namespace SamplesAspNet
{
    // Implements a custom WebBaseEvent type that 
    // uses WebProcessInformation.
    public class SampleWebProcessInformation:
 
        WebManagementEvent
    {
        private StringBuilder eventInfo;
        // Instantiate SampleWebProcessInformation.    
        public SampleWebProcessInformation(string
 msg, 
            object eventSource, int eventCode) : 
        base(msg, eventSource, eventCode)
        {
            // Perform custom initialization.
            eventInfo = new StringBuilder();
            eventInfo.Append(string.Format(
            "Event created at: {0}", 
            EventTime.ToString()));
        }   

        // Raises the event.
        public override void Raise()
        {
            // Perform custom processing. 
            eventInfo.Append(string.Format(
            "Event raised at: {0}", 
            EventTime.ToString()));

            // Raise the event.
            base.Raise();
        }

        public string GetAccountName()
        {
            // Get the name of the account.
            return (string.Format(
                "Account name: {0}", 
                ProcessInformation.AccountName));
        }

        public string GetProcessId()
        {
            // Get the process identifier.
            return (string.Format(
                "Process Id: {0}", 
                ProcessInformation.ProcessID.ToString()));
        }

        public string GetProcessName()
        {
            // Get the requests in execution.
            return (string.Format(
                "Process name: {0}", 
                ProcessInformation.ProcessName));
        }

        //Formats Web request event information.
        public override void FormatCustomEventDetails(
            WebEventFormatter formatter)
        {
            base.FormatCustomEventDetails(formatter);

            // Add custom data.
            formatter.AppendLine("Custom Process Information:");
            formatter.IndentationLevel += 1;

            // Display the process information.
            formatter.AppendLine(GetAccountName());
            formatter.AppendLine(GetProcessId());
            formatter.AppendLine(GetProcessName());
            formatter.IndentationLevel -= 1;
            formatter.AppendLine(eventInfo.ToString());
        }
    }

}
.NET Framework のセキュリティ.NET Frameworkセキュリティ
継承階層継承階層
System.Object
  System.Web.Management.WebProcessInformation
スレッド セーフスレッド セーフ
この型の public static (Visual Basic では Shared) メンバはすべて、スレッド セーフです。インスタンス メンバ場合は、スレッド セーフであるとは限りません。
プラットフォームプラットフォーム
バージョン情報バージョン情報
参照参照
関連項目
WebProcessInformation メンバ
System.Web.Management 名前空間
WebHeartbeatEvent クラス
その他の技術情報
healthMonitoring 要素 (ASP.NET 設定スキーマ)
ASP.NET の状態監視

WebProcessInformation プロパティ


パブリック プロパティパブリック プロパティ

参照参照

関連項目

WebProcessInformation クラス
System.Web.Management 名前空間
WebHeartbeatEvent クラス

その他の技術情報

healthMonitoring 要素 (ASP.NET 設定スキーマ)
ASP.NET の状態監視

WebProcessInformation メソッド


パブリック メソッドパブリック メソッド

プロテクト メソッドプロテクト メソッド
参照参照

関連項目

WebProcessInformation クラス
System.Web.Management 名前空間
WebHeartbeatEvent クラス

その他の技術情報

healthMonitoring 要素 (ASP.NET 設定スキーマ)
ASP.NET の状態監視

WebProcessInformation メンバ

ASP.NETホストするワーカー プロセスに関する情報提供します

WebProcessInformation データ型公開されるメンバを以下の表に示します


パブリック プロパティパブリック プロパティ
パブリック メソッドパブリック メソッド
プロテクト メソッドプロテクト メソッド
参照参照

関連項目

WebProcessInformation クラス
System.Web.Management 名前空間
WebHeartbeatEvent クラス

その他の技術情報

healthMonitoring 要素 (ASP.NET 設定スキーマ)
ASP.NET の状態監視


このページでは「.NET Framework クラス ライブラリ リファレンス」からWebProcessInformationを検索した結果を表示しています。
Weblioに収録されているすべての辞書からWebProcessInformationを検索する場合は、下記のリンクをクリックしてください。
 全ての辞書からWebProcessInformation を検索

英和和英テキスト翻訳>> Weblio翻訳
英語⇒日本語日本語⇒英語
  

辞書ショートカット

すべての辞書の索引

「WebProcessInformation」の関連用語

WebProcessInformationのお隣キーワード
検索ランキング

   

英語⇒日本語
日本語⇒英語
   



WebProcessInformationのページの著作権
Weblio 辞書 情報提供元は 参加元一覧 にて確認できます。

   
日本マイクロソフト株式会社日本マイクロソフト株式会社
© 2025 Microsoft.All rights reserved.

©2025 GRAS Group, Inc.RSS