Domain.GetComputerDomain Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Gets the Domain object that represents the domain to which the local computer is joined.
public:
static System::DirectoryServices::ActiveDirectory::Domain ^ GetComputerDomain();
public static System.DirectoryServices.ActiveDirectory.Domain GetComputerDomain ();
static member GetComputerDomain : unit -> System.DirectoryServices.ActiveDirectory.Domain
Public Shared Function GetComputerDomain () As Domain
Returns
A Domain object that represents the domain to which the local machine is joined.
Exceptions
A connection to the domain could not be made.
Remarks
The return value of the GetComputerDomain method is a Domain object representing the domain to which the computer running the application is joined. This return value is independent of the domain credentials under which the application is run. This method will retrieve the computer's domain regardless of the trusted account domain credentials it is run under. To retrieve the Domain object that represents the domain corresponding to the user credentials in effect for the security context under which the application is running, use the GetCurrentDomain method instead.