Sdílet prostřednictvím


WebProcessInformation.ProcessName Vlastnost

Definice

Získá název procesu.

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

Hodnota vlastnosti

String

Název procesu

Příklady

Následující příklad ukazuje, jak získat název procesu.

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

Poznámky

Toto je název pracovního procesu, který hostuje ASP.NET.

Platí pro