简体   繁体   中英

How do I connect to a local host using PrincipalContext?

I know this has a simple solution, but I can't seem to make it work...

Using other Stack Overflow answers and Microsoft's Documentation , I know that PrincipalContext must be set up like this:

PrincipalContext pc = new PrincipalContext(ContextType.Domain, "YOURDOMAIN"); 

or also like this:

PrincipalContext domainContext = new PrincipalContext(ContextType.Domain,"YOURDOMAIN", null,ContextOptions.Negotiate | ContextOptions.SecureSocketLayer);  

My question is, what do I put for the "YOURDOMAIN" attribute if I am connecting to a local host?

Trying this ended in a PrincipalServerDownException :

PrincipalContext pc = new PrincipalContext(ContextType.Domain, "localhost:3600")

Is this what you're looking for? :

   PrincipalContext pc = new PrincipalContext(ContextType.Machine, null);

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM