C# Client Library
A C# Client Library for the AnalyzeRe REST API
Loading...
Searching...
No Matches
ValidationAttribute.cs
Go to the documentation of this file.
1using System;
2
4{
6 [AttributeUsage(AttributeTargets.Property, Inherited = true, AllowMultiple = true)]
7 public abstract class ValidationAttribute : Attribute
8 {
13 public abstract bool IsValid(object value);
14 }
15}
Any attribute that can validate the value of a property.
bool IsValid(object value)
Determines whether the given value meets this attribute's validation criteria.