Table of Contents

Class ClientSessionTransferConfiguration

Namespace
Auth0.ManagementApi
Assembly
Auth0.ManagementApi.dll

Native to Web SSO Configuration

[Serializable]
public record ClientSessionTransferConfiguration : IJsonOnDeserialized, IEquatable<ClientSessionTransferConfiguration>
Inheritance
ClientSessionTransferConfiguration
Implements
Inherited Members
Extension Methods

Properties

AdditionalProperties

[JsonIgnore]
public ReadOnlyAdditionalProperties AdditionalProperties { get; }

Property Value

ReadOnlyAdditionalProperties

AllowRefreshToken

Indicates whether Refresh Tokens are allowed to be issued when authenticating with a Session Transfer Token. Usually configured in the web application. Default value is false.

[JsonPropertyName("allow_refresh_token")]
public bool? AllowRefreshToken { get; set; }

Property Value

bool?

AllowedAuthenticationMethods

Indicates whether an app can create a session from a Session Transfer Token received via indicated methods. Can include cookie and/or query. Usually configured in the web application. Default value is an empty array [].

[JsonPropertyName("allowed_authentication_methods")]
public Optional<IEnumerable<ClientSessionTransferAllowedAuthenticationMethodsEnum>?> AllowedAuthenticationMethods { get; set; }

Property Value

Optional<IEnumerable<ClientSessionTransferAllowedAuthenticationMethodsEnum>>

CanCreateSessionTransferToken

Indicates whether an app can issue a Session Transfer Token through Token Exchange. If set to 'false', the app will not be able to issue a Session Transfer Token. Usually configured in the native application. Default value is false.

[JsonPropertyName("can_create_session_transfer_token")]
public bool? CanCreateSessionTransferToken { get; set; }

Property Value

bool?

EnforceCascadeRevocation

Indicates whether revoking the parent Refresh Token that initiated a Native to Web flow and was used to issue a Session Transfer Token should trigger a cascade revocation affecting its dependent child entities. Usually configured in the native application. Default value is true, applicable only in Native to Web SSO context.

[JsonPropertyName("enforce_cascade_revocation")]
public bool? EnforceCascadeRevocation { get; set; }

Property Value

bool?

EnforceDeviceBinding

[JsonPropertyName("enforce_device_binding")]
public ClientSessionTransferDeviceBindingEnum? EnforceDeviceBinding { get; set; }

Property Value

ClientSessionTransferDeviceBindingEnum?

EnforceOnlineRefreshTokens

Indicates whether Refresh Tokens created during a Native to Web session are tied to that session's lifetime. This determines if such refresh tokens should be automatically revoked when their corresponding sessions are. Usually configured in the web application. Default value is true, applicable only in Native to Web SSO context.

[JsonPropertyName("enforce_online_refresh_tokens")]
public bool? EnforceOnlineRefreshTokens { get; set; }

Property Value

bool?

Methods

ToString()

Returns a string that represents the current object.

public override string ToString()

Returns

string

A string that represents the current object.