Condividi tramite


WebProcessInformation.ProcessName Proprietà

Definizione

Ottiene il nome del processo.

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

Valore della proprietà

String

Nome del processo.

Esempio

Nell'esempio seguente viene illustrato come ottenere il nome del processo.

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

Commenti

Si tratta del nome del processo di lavoro che ospita ASP.NET.

Si applica a