// 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())); }
// Returns the explicit password if available public static string GetExplicitPassword() { return(ConditionalTestDetectors.GetExplicitPassword()); }
// Gets the UPN if available public static string GetSPN() { return(ConditionalTestDetectors.GetSPN()); }
// Returns the explicit user name if available public static string GetExplicitUserName() { return(ConditionalTestDetectors.GetExplicitUserName()); }