| 
            
              UserInfo(String) Constructor
             | 
          
        
        
            Initializes a new instance of the 
UserInfo class.
            
 
        
        Namespace: GSF.IdentityAssembly: GSF.Core (in GSF.Core.dll) Version: 2.4.258-beta+f8b6aa3dbfe0b4cc2b0b0760dd5d2a3dd4f59d09
Syntaxpublic UserInfo(
	string loginID
)
Public Sub New ( 
	loginID As String
)
public:
UserInfo(
	String^ loginID
)
new : 
        loginID : string -> UserInfoGSF.Identity.UserInfo = function(loginID);
 View SourceParameters
- loginID  String
 - 
            Login ID in 'domain\username' format of the user's account whose information is to be retrieved. Login ID 
            can also be specified in 'username' format without the domain name, in which case the domain name will be
            approximated based on the privileged user domain if specified, default logon domain of the host machine 
            if available, or the domain of the identity that owns the host process.
            
 
Exceptions| Exception | Condition | 
|---|
| ArgumentNullException | loginID is a null or empty string. | 
See Also