Table of Contents

Class ConfigurationValueException<T>

Namespace
FoundationaLLM.Common.Models.ResourceProviders.Configuration
Assembly
FoundationaLLM.Common.dll

Provides the user-specific value of a strongly typed configuration value.

public class ConfigurationValueException<T>

Type Parameters

T

The type of the configuration value.

Inheritance
ConfigurationValueException<T>
Inherited Members
Extension Methods

Properties

Enabled

Gets or sets a value indicating whether the configuration value is enabled.

[JsonPropertyName("enabled")]
public bool Enabled { get; set; }

Property Value

bool

UserPrincipalName

Gets or sets the user principal name for the user to which the exception applies.

[JsonPropertyName("user_principal_name")]
public required string UserPrincipalName { get; set; }

Property Value

string

Value

Gets or sets the value of the configuration exception entry.

[JsonPropertyName("value")]
public required T Value { get; set; }

Property Value

T