Specifies authentication parameters for creating a logon token or logon session.
Inheritance Hierarchy Namespace: Dundas.BI.AccountServicesAssembly: Dundas.BI.Core (in Dundas.BI.Core.dll) Version: 2.0.0.0 (26.2.0.1000)
Syntaxpublic class LogOnParameters
Public Class LogOnParameters
public ref class LogOnParameters
type LogOnParameters = class end
The LogOnParameters type exposes the following members.
Constructors
Properties
Remarks
The authentication operation (i.e. "logon" or "get logon token") will use the properties from
this class according to the following rules:
- If Credentials is non-null, it will be the only property considered for authentication.
- Otherwise, if LogOnToken is non-null, it will be the only property considered for authentication.
- Otherwise, if UseWindowsIdentity is ,
only the windows identity associated with the caller context will considered for authentication.
- Otherwise, if AccountName is non-null, it will be used along with Password to authenticate.
- Otherwise, the authentication operation will throw InvalidOperationException, because there is
not enough information to authenticate.
See Also