CSLA.NET 6.0.0
CSLA .NET is a software development framework that helps you build a reusable, maintainable object-oriented business layer for your app.
All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Events Macros Pages
DIBasedTestAttribute.cs
Go to the documentation of this file.
1//-----------------------------------------------------------------------
2// <copyright file="DIBasedTestAttribute.cs" company="Marimer LLC">
3// Copyright (c) Marimer LLC. All rights reserved.
4// Website: https://cslanet.com
5// </copyright>
6// <summary>Data Annotations attribute that makes use of DI</summary>
7//-----------------------------------------------------------------------
8using System;
9using System.Collections.Generic;
10using System.ComponentModel.DataAnnotations;
11using System.Linq;
12using System.Text;
13using System.Threading.Tasks;
14
16{
17
21 internal class DIBasedTestAttribute : ValidationAttribute
22 {
23 public DIBasedTestAttribute() : base("Unknown validation error") { }
24
25 public override bool RequiresValidationContext => true;
26
34 protected override ValidationResult IsValid(object value, ValidationContext validationContext)
35 {
36 ApplicationContext applicationContext;
37
38 if (value is null) return ValidationResult.Success;
39 if (validationContext is null) throw new ArgumentNullException(nameof(validationContext));
40
41 applicationContext = (ApplicationContext)validationContext.GetService(typeof(ApplicationContext));
42
43 if (applicationContext is null)
44 {
45 return new ValidationResult("Service provider failed to create the appropriate class!");
46 }
47
48 return ValidationResult.Success;
49 }
50 }
51}