Interface ILoginInfo
Represents information about an authentificated user.
Namespace: BiExcellence.OpenBi.Api.Commands
Assembly: BiExcellence.OpenBi.Api.dll
Syntax
public interface ILoginInfo
Properties
IsAdmin
Gets a value indicating whether the user is an administrator.
Declaration
bool IsAdmin { get; }
Property Value
Type | Description |
---|---|
bool |
RequirePasswordChange
Gets a value indicating whether the user requires a password change.
Declaration
bool RequirePasswordChange { get; }
Property Value
Type | Description |
---|---|
bool |
ServerParameters
Gets the server parameters.
Declaration
IDictionary<string, string> ServerParameters { get; }
Property Value
Type | Description |
---|---|
IDictionary<string, string> |
UserId
Gets the username of the user.
Declaration
string UserId { get; }
Property Value
Type | Description |
---|---|
string |