Example #1
0
 // Returns 'true' if both the server and the client are domain-joined.
 public static bool Domain_Joined()
 {
     return(GetConditionValue(nameof(Domain_Joined),
                              () => ConditionalTestDetectors.IsClientDomainJoined() &&
                              Server_Domain_Joined()));
 }
Example #2
0
 // Returns the explicit password if available
 public static string GetExplicitPassword()
 {
     return(ConditionalTestDetectors.GetExplicitPassword());
 }
Example #3
0
 // Gets the UPN if available
 public static string GetSPN()
 {
     return(ConditionalTestDetectors.GetSPN());
 }
Example #4
0
 // Returns the explicit user name if available
 public static string GetExplicitUserName()
 {
     return(ConditionalTestDetectors.GetExplicitUserName());
 }