本文整理汇总了C#中System.Web.Management.WebProcessInformation类的典型用法代码示例。如果您正苦于以下问题:C# WebProcessInformation类的具体用法?C# WebProcessInformation怎么用?C# WebProcessInformation使用的例子?那么恭喜您, 这里精选的类代码示例或许可以为您提供帮助。
WebProcessInformation类属于System.Web.Management命名空间,在下文中一共展示了WebProcessInformation类的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C#代码示例。
示例1: 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());
}
}
}