Class ConfigurationValueException<T>
- Assembly
 - FoundationaLLM.Common.dll
 
Provides the user-specific value of a strongly typed configuration value.
public class ConfigurationValueException<T>
  Type Parameters
TThe 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
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
Value
Gets or sets the value of the configuration exception entry.
[JsonPropertyName("value")]
public required T Value { get; set; }
  Property Value
- T