다음을 통해 공유


WebProcessInformation.ProcessID 속성

정의

프로세스 식별자를 가져옵니다.

public:
 property int ProcessID { int get(); };
public int ProcessID { get; }
member this.ProcessID : int
Public ReadOnly Property ProcessID As Integer

속성 값

Int32

프로세스 식별자입니다.

예제

다음 예제에서는 프로세스 식별자를 가져오는 방법을 보여 줍니다.

public string GetProcessId()
{
    // Get the process identifier.
    return (string.Format(
        "Process Id: {0}", 
        ProcessInformation.ProcessID.ToString()));
}
Public Function GetProcessId() As String
   ' Get the process identifier.
     Return String.Format("Process Id: {0}", _
     processInformation.ProcessID.ToString())
End Function 'GetProcessId

설명

ASP.NET을 호스팅하는 작업자 프로세스의 식별자입니다.

적용 대상