Neuron®
The Neuron® is the basis for the creation of open and secure federated networks for smart societies.
Loading...
Searching...
No Matches
RegularExpressionAttribute.cs
1using System;
2
4{
8 [AttributeUsage(AttributeTargets.Property | AttributeTargets.Field, AllowMultiple = false, Inherited = true)]
9 public class RegularExpressionAttribute : Attribute
10 {
11 private readonly string pattern;
12
18 {
19 this.pattern = Pattern;
20 }
21
25 public string Pattern => this.pattern;
26 }
27}
Validates input against a regular expression.
string Pattern
Regular expression to validate against.
RegularExpressionAttribute(string Pattern)
Validates input against a regular expression.