You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
/// Use this method to check if a value is not null and not an empty collection.
41
+
/// If <paramref name="value"/> is null or an empty collection, an error message should be appended and a log of the passed <paramref name="level"/> severity should be created.
42
+
/// </summary>
43
+
/// <typeparam name="TValue">The type of the underlying entities that are stored within the requested collection.</typeparam>
/// Use this method to check if a value is equal to its default value.
41
69
/// If <paramref name="value"/> is equal to its default value, an error message should be appended and a log of the passed <paramref name="level"/> severity would be created.
/// Use this method to check if a value is equal to its default value.
90
+
/// If <paramref name="value"/> is equal to its default value, an error message should be appended and a log of the passed <paramref name="level"/> severity would be created.
91
+
/// </summary>
92
+
/// <typeparam name="TValue">The type of the <paramref name="value"/>.</typeparam>
93
+
/// <param name="value">The value that should be validated.</param>
94
+
/// <param name="className">The name of the class where the <paramref name="methodName"/> is defined.</param>
95
+
/// <param name="methodName">The name of he method where <paramref name="value"/> is used.</param>
96
+
/// <param name="propertyName">The name of the property.</param>
/// Use this method to check if a value is a valid string.
62
110
/// If <paramref name="value"/> is null, empty or consists only of whitespace characters, an error message should be appended and a log of the passed <paramref name="level"/> severity would be created.
@@ -76,6 +124,24 @@ public static void ValidateNullOrWhitespace<T>(this OperationResult<T> operation
/// Use this method to check if a value is a valid string.
129
+
/// If <paramref name="value"/> is null, empty or consists only of whitespace characters, an error message should be appended and a log of the passed <paramref name="level"/> severity would be created.
130
+
/// </summary>
131
+
/// <param name="value">The value that should be validated.</param>
132
+
/// <param name="className">The name of the class where the <paramref name="methodName"/> is defined.</param>
133
+
/// <param name="methodName">The name of he method where <paramref name="value"/> is used.</param>
134
+
/// <param name="propertyName">The name of the property.</param>
0 commit comments