-
-
Notifications
You must be signed in to change notification settings - Fork 100
/
Copy pathValidation.cs
54 lines (48 loc) · 1.37 KB
/
Validation.cs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
using System.Diagnostics.CodeAnalysis;
using System.Runtime.CompilerServices;
namespace Schneegans.Unattend;
public static class Validation
{
public static T NotNull<T>([NotNull] T? property, [CallerArgumentExpression(nameof(property))] string field = "") where T : struct
{
if (property == null)
{
throw new ConfigurationException($"Parameter '{field}' must be set.");
}
else
{
return (T)property;
}
}
public static string StringNotEmpty([NotNull] string? property, [CallerArgumentExpression(nameof(property))] string field = "")
{
if (string.IsNullOrEmpty(property))
{
throw new ConfigurationException($"Parameter '{field}' must be set.");
}
else
{
return property;
}
}
[return: NotNull]
public static int InRange([NotNull] int? property, int? min = null, int? max = null, [CallerArgumentExpression(nameof(property))] string field = "")
{
NotNull(property, field);
if (min.HasValue)
{
if (property < min)
{
throw new ConfigurationException($"Value of parameter '{field}' must not be less than {min}, but was {property}.");
}
}
if (max.HasValue)
{
if (property > max)
{
throw new ConfigurationException($"Value of parameter '{field}' must not be greater than {max}, but was {property}.");
}
}
return (int)property;
}
}