Click or drag to resize

SessionManagerStartSessionForDomainUser Method

Start session for a user from specified domain based on specified credentials

Namespace:  FileHold.UserRoleManager
Assembly:  FileHold.UserRoleManager (in FileHold.UserRoleManager.dll) Version: 17.0.0.0
Syntax
C#
public string StartSessionForDomainUser(
	string login,
	string password,
	Guid domain,
	Client clientType
)

Parameters

login
Type: SystemString
Login of the domain user, without domain name
password
Type: SystemString
Password of the domain user
domain
Type: SystemGuid
Global identifier of the domain, as returned by GetStoredDomains() method
clientType
Type: FileHold.CommonClient
Type of concurrent session. Only one session of each type can exist at a given type per each user. All client types are reserved for exclusive use by FileHold except for the CustomClient. Anyone creating a custom application must use the CustomClient type. Failure to do so may result in incorrect operation of the system.

Return Value

Type: String
The session identifier to be passed in the FHLSID cookie to other Web Services.
See Also