WebProcessInformation.ProcessName 属性

定义

获取该进程的名称。

public:
 property System::String ^ ProcessName { System::String ^ get(); };
public string ProcessName { get; }
member this.ProcessName : string
Public ReadOnly Property ProcessName As String

属性值

String

进程的名称。

示例

以下示例演示如何获取进程名称。

public string GetProcessName()
{
    // Get the requests in execution.
    return (string.Format(
        "Process name: {0}", 
        ProcessInformation.ProcessName));
}
Public Function GetProcessName() As String
   ' Get the requests in execution.
     Return String.Format("Process name: {0}", _
     ProcessInformation.ProcessName)
End Function 'GetProcessName

注解

这是承载 ASP.NET 的工作进程的名称。

适用于