Class FluentBase
Acts as an abstract foundation for structured error handling in classes using a fluent interface pattern. Offers mechanisms to either immediately throw or accumulate exceptions, alongside managing continuation after validation errors.
Implements
Inherited Members
Namespace: Coree.NETStandard.Abstractions.FluentBase
Assembly: Coree.NETStandard.dll
Syntax
public abstract class FluentBase : IFluentBase
Remarks
Implements the IFluentBase interface to supply default methods and properties, facilitating the easy integration of a uniform error handling strategy across derived classes. This base class is designed to empower your fluent interfaces with sophisticated error handling capabilities, allowing for the graceful accumulation of errors for later analysis or immediate failure upon error detection to prevent further processing under invalid conditions.
Example usage in a simplified Product class inheriting from FluentBase and an extension method to adjust its price:
// Inheriting FluentBase in a Product class
public class Product : FluentBase
{
public string Name { get; set; }
public decimal Price { get; set; }
}
// Extension method for the Product class to adjust its price
public static class ProductExtensions
{
public static Product AdjustPrice(this Product product, decimal adjustment)
{
// Early exit if the product is invalid and continuation on validation error is not enabled
if (!product.IsValid && !product.ContinueOnValidationError) return product;
try
{
// Attempt to adjust the product's price
var newPrice = product.Price + adjustment;
if (newPrice < 0)
{
throw new ArgumentOutOfRangeException(nameof(adjustment), "Adjustment results in a negative price.");
}
product.Price = newPrice;
}
catch (Exception ex)
{
// Add a validation error in case of an exception
product.AddValidationError($"Error adjusting price by {adjustment}: {ex.Message}", ex);
}
return product;
}
}
This exemplifies how Product
, by inheriting FluentBase
, utilizes built-in error handling for a price adjustment operation, demonstrating the class's utility in creating fluent interfaces with integrated error management.
Properties
| Edit this page View SourceContinueOnValidationError
Indicates whether operations should continue after a validation error has occurred, based on the current configuration.
Declaration
public bool ContinueOnValidationError { get; }
Property Value
Type | Description |
---|---|
bool |
IsValid
Indicates whether the current object is in a valid state, based on the absence of validation errors.
Declaration
public bool IsValid { get; }
Property Value
Type | Description |
---|---|
bool |
ThrowOnError
Gets a value indicating whether exceptions are thrown immediately upon encountering a validation error. This property is set through EnableThrowOnError() and DisableThrowOnError(bool) methods.
Declaration
public bool ThrowOnError { get; }
Property Value
Type | Description |
---|---|
bool |
ValidationErrors
Gets a collection of exceptions that have been accumulated during operation executions.
Declaration
public List<Exception> ValidationErrors { get; }
Property Value
Type | Description |
---|---|
List<Exception> |
Methods
| Edit this page View SourceAddValidationError(string, Exception)
Adds a specified validation error to the collection, throwing an exception if configured to do so.
Declaration
public void AddValidationError(string message, Exception innerException)
Parameters
Type | Name | Description |
---|---|---|
string | message | The error message. |
Exception | innerException | The exception that represents the error. |
DisableThrowOnError(bool)
Configures the class to accumulate validation errors without throwing exceptions immediately, with an option to continue operations after encountering a validation error.
Declaration
public IFluentBase DisableThrowOnError(bool continueOnValidationError = false)
Parameters
Type | Name | Description |
---|---|---|
bool | continueOnValidationError | Indicates whether to continue operations after a validation error has occurred. |
Returns
Type | Description |
---|---|
IFluentBase | The current instance of FluentBase, enabling fluent configuration. |
EnableThrowOnError()
Configures the class to throw exceptions immediately upon encountering a validation error.
Declaration
public IFluentBase EnableThrowOnError()
Returns
Type | Description |
---|---|
IFluentBase | The current instance of FluentBase, enabling fluent configuration. |