Environment.MachineName プロパティ
ローカル コンピュータの NetBIOS 名を取得します。
Public Shared ReadOnly Property MachineName As String
[C#]
public static string MachineName {get;}
[C++]
public: __property static String* get_MachineName();
[JScript]
public static function get MachineName() : String;
プロパティ値
このコンピュータの名前を格納している文字列。
例外
例外の種類 | 条件 |
---|---|
InvalidOperationException | コンピュータの名前を取得できません。 |
解説
コンピュータの名前は、システムの起動時に、名前がレジストリから読み込まれた時点で確定されます。コンピュータがクラスタ内のノードである場合は、ノード名が返されます。
使用例
' Sample for the Environment.MachineName property
Imports System
Class Sample
Public Shared Sub Main()
Console.WriteLine()
' <-- Keep this information secure! -->
Console.WriteLine("MachineName: {0}", Environment.MachineName)
End Sub 'Main
End Class 'Sample
'
'This example produces the following results:
'(Any result that is lengthy, specific to the machine on which this sample was tested,
'or reveals information that should remain secure, has been omitted
'and marked "!---OMITTED---!".)
'
'MachineName: !---OMITTED---!
'
[C#]
// Sample for the Environment.MachineName property
using System;
class Sample
{
public static void Main()
{
Console.WriteLine();
// <-- Keep this information secure! -->
Console.WriteLine("MachineName: {0}", Environment.MachineName);
}
}
/*
This example produces the following results:
(Any result that is lengthy, specific to the machine on which this sample was tested, or reveals information that should remain secure, has been omitted and marked "!---OMITTED---!".)
MachineName: !---OMITTED---!
*/
[C++]
// Sample for the Environment::MachineName property
#using <mscorlib.dll>
using namespace System;
int main() {
Console::WriteLine();
// <-- Keep this information secure! -->
Console::WriteLine(S"MachineName: {0}", Environment::MachineName);
}
/*
This example produces the following results:
(Any result that is lengthy, specific to the machine on which this sample was tested, or reveals information that should remain secure, has been omitted and marked S"!---OMITTED---!".)
MachineName: !---OMITTED---!
*/
[JScript] JScript のサンプルはありません。Visual Basic、C#、および C++ のサンプルを表示するには、このページの左上隅にある言語のフィルタ ボタン をクリックします。
必要条件
プラットフォーム: Windows 98, Windows NT 4.0, Windows Millennium Edition, Windows 2000, Windows XP Home Edition, Windows XP Professional, Windows Server 2003 ファミリ
.NET Framework セキュリティ:
- EnvironmentPermission (アクセス許可が保護するリソースへのフル アクセス) PermissionState.Unrestricted (関連する列挙体)