次の方法で共有


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

適用対象