#### [Abblix\.Oidc\.Server](https://www.abblix.com/en/docs/api/abblix-oidc-server 'index')
### [Abblix\.Oidc\.Server\.Common\.Constants](https://www.abblix.com/en/docs/api/abblix-oidc-server/Abblix.Oidc.Server.Common.Constants 'Abblix\.Oidc\.Server\.Common\.Constants')

## MediaTypes Class

Represents common media types used in HTTP requests and responses\.

```csharp
public static class MediaTypes
```

Inheritance [System\.Object](https://learn.microsoft.com/en-us/dotnet/api/system.object 'System\.Object') → MediaTypes
### Fields

## MediaTypes\.FormUrlEncoded Field {#Abblix.Oidc.Server.Common.Constants.MediaTypes.FormUrlEncoded}

Represents the "application/x\-www\-form\-urlencoded" media type for HTML form data\.

```csharp
public const string FormUrlEncoded = "application/x-www-form-urlencoded";
```

#### Field Value
[System\.String](https://learn.microsoft.com/en-us/dotnet/api/system.string 'System\.String')

## MediaTypes\.Javascript Field {#Abblix.Oidc.Server.Common.Constants.MediaTypes.Javascript}

Represents the "text/javascript" media type for JavaScript code\.

```csharp
public const string Javascript = "text/javascript";
```

#### Field Value
[System\.String](https://learn.microsoft.com/en-us/dotnet/api/system.string 'System\.String')

## MediaTypes\.Jwt Field {#Abblix.Oidc.Server.Common.Constants.MediaTypes.Jwt}

Represents the "application/jwt" media type for JSON Web Tokens \(JWT\)\.

```csharp
public const string Jwt = "application/jwt";
```

#### Field Value
[System\.String](https://learn.microsoft.com/en-us/dotnet/api/system.string 'System\.String')

## MediaTypes\.TokenIntrospectionJwt Field {#Abblix.Oidc.Server.Common.Constants.MediaTypes.TokenIntrospectionJwt}

Represents the "application/token\-introspection\+jwt" media type for a JWT\-formatted token introspection
response \(RFC 9701 §4\): the media type a client sends in `Accept` to request a JWT response, and the
`Content-Type` the server returns it with\.

```csharp
public const string TokenIntrospectionJwt = "application/token-introspection+jwt";
```

#### Field Value
[System\.String](https://learn.microsoft.com/en-us/dotnet/api/system.string 'System\.String')
