次の方法で共有


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 をホストするワーカー プロセスの名前です。

適用対象