Skip to main content

ApplicationTypes Class

Abblix.Oidc.Server

Abblix.Oidc.Server.Common.Constants

ApplicationTypes Class

Defines constants for different types of applications in OAuth 2.0 and OpenID Connect contexts.

public static class ApplicationTypes

Inheritance System.Object → ApplicationTypes

Fields

ApplicationTypes.Native Field

Represents a native application type. This type is typically used for applications installed on a device, such as mobile apps or desktop applications.

public const string Native = "native";

Field Value

System.String

ApplicationTypes.Web Field

Represents a web application type. This type is used for applications that are accessed through a web browser and typically hosted on a web server.

public const string Web = "web";

Field Value

System.String