次の方法で共有


Environment.UserDomainName プロパティ

現在のユーザーに関連付けられているネットワーク ドメイン名を取得します。

Public Shared ReadOnly Property UserDomainName As String
[C#]
public static string UserDomainName {get;}
[C++]
public: __property static String* get_UserDomainName();
[JScript]
public static function get UserDomainName() : String;

プロパティ値

ホスト コンピュータのネットワーク ドメイン名。

例外

例外の種類 条件
PlatformNotSupportedException 現在のオペレーティング システムでは、ネットワーク ドメイン名の取得がサポートされていません。
InvalidOperationException ネットワーク ドメイン名が取得できません。

解説

このプロパティの値は、通常はホスト コンピュータ名ですが、配置されているアプリケーション ソリューションによって異なる場合もあります。現在のユーザーは、 UserName で指定されている名前です。

使用例

 
' Sample for the Environment.UserDomainName property
Imports System

Class Sample
   Public Shared Sub Main()
      Console.WriteLine()
      '  <-- Keep this information secure! -->
      Console.WriteLine("UserDomainName: {0}", Environment.UserDomainName)
   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---!".)
'
'UserDomainName: !---OMITTED---!
'

[C#] 
// Sample for the Environment.UserDomainName property
using System;

class Sample 
{
    public static void Main() 
    {
    Console.WriteLine();
//  <-- Keep this information secure! -->
    Console.WriteLine("UserDomainName: {0}", Environment.UserDomainName);
    }
}
/*
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---!".)

UserDomainName: !---OMITTED---!
*/

[C++] 
// Sample for the Environment::UserDomainName property
#using <mscorlib.dll>

using namespace System;

int main() {
   Console::WriteLine();
   //  <-- Keep this information secure! -->
   Console::WriteLine(S"UserDomainName: {0}", Environment::UserDomainName);
}
/*
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---!".)

UserDomainName: !---OMITTED---!
*/

[JScript] JScript のサンプルはありません。Visual Basic、C#、および C++ のサンプルを表示するには、このページの左上隅にある言語のフィルタ ボタン 言語のフィルタ をクリックします。

必要条件

プラットフォーム: Windows NT Server 4.0, Windows NT Workstation 4.0, Windows 2000, Windows XP Home Edition, Windows XP Professional, Windows Server 2003 ファミリ

.NET Framework セキュリティ:

参照

Environment クラス | Environment メンバ | System 名前空間