다음을 통해 공유


WebApplicationInformation.MachineName 속성

정의

애플리케이션 컴퓨터 이름을 가져옵니다.

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

속성 값

String

애플리케이션이 실행되는 컴퓨터의 이름입니다.

예제

다음 코드 예제에는 컴퓨터 이름을 가져오는 방법을 보여 줍니다.

public string GetApplicationMachineName()
{
    // Get the name of the application machine name.
    return (string.Format(
        "Application machine name: {0}",
        ApplicationInformation.MachineName));
}
Public Function GetApplicationMachineName() As String
    ' Get the name of the application machine name.
    Return String.Format( _
    "Application machine name: {0}", _
    ApplicationInformation.MachineName())
End Function 'GetApplicationMachineName

적용 대상