|
UserInfo(String, String) Constructor
|
Initializes a new instance of the
UserInfo class.
Namespace: GSF.IdentityAssembly: GSF.Core (in GSF.Core.dll) Version: 2.4.246-beta+ff392465a0262ee2737937d4127fc3c2f08c6dcd
Syntaxpublic UserInfo(
string loginID,
string ldapPath
)
Public Sub New (
loginID As String,
ldapPath As String
)
public:
UserInfo(
String^ loginID,
String^ ldapPath
)
new :
loginID : string *
ldapPath : string -> UserInfo
GSF.Identity.UserInfo = function(loginID, ldapPath);
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.
- ldapPath String
-
String in 'LDAP://' format that specifies the Active Directory node where search for the user starts.
ExceptionsException | Condition |
---|
ArgumentNullException | loginID is a null or empty string. |
See Also