Skip to main content

DisplayModes Class

Abblix.Oidc.Server

Abblix.Oidc.Server.Common.Constants

DisplayModes Class

The class representing the display modes for the authentication and consent UI.

public static class DisplayModes

Inheritance System.Object → DisplayModes

Fields

DisplayModes.Page Field

The Authorization Server SHOULD display the authentication and consent UI consistent with a full User Agent page view. If the display parameter is not specified, this is the default display mode.

public const string Page = "page";

Field Value

System.String

DisplayModes.Popup Field

The Authorization Server SHOULD display the authentication and consent UI consistent with a popup User Agent window. The popup User Agent window should be of an appropriate size for a login-focused dialog and should not obscure the entire window that it is popping up over.

public const string Popup = "popup";

Field Value

System.String

DisplayModes.Touch Field

The Authorization Server SHOULD display the authentication and consent UI consistent with a device that leverages a touch interface.

public const string Touch = "touch";

Field Value

System.String

DisplayModes.Wap Field

The Authorization Server SHOULD display the authentication and consent UI consistent with a "feature phone" type display.

public const string Wap = "wap";

Field Value

System.String