Aller au contenu
Abblix
Cette page n'a pas encore été traduite.

DisplayModes Class

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

C#
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.

C#
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.

C#
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.

C#
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.

C#
public const string Wap = "wap";

Field Value

System.String