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
@@ -132,91 +132,6 @@ public OperationResult AppendException(Exception exception, int errorCode = 0, L
132
132
returnthis;
133
133
}
134
134
135
-
/// <summary>
136
-
/// Use this method to check if a value is a valid string.
137
-
/// 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.
138
-
/// </summary>
139
-
/// <param name="value">The value that should be validated.</param>
140
-
/// <param name="className">The name of the class where the <paramref name="methodName"/> is defined.</param>
141
-
/// <param name="methodName">The name of he method where <paramref name="value"/> is used.</param>
142
-
/// <param name="propertyName">The name of the property.</param>
/// Use this method to check if a value is not null.
155
-
/// If you want to validate that an entity exists, use the "ValidateExist" extension method.
156
-
/// If you want to validate that the currently authenticated user is not null, use the "ValidateUser" extension method.
157
-
/// If <paramref name="value"/> is null, an error message should be appended and a log of the passed <paramref name="level"/> severity would be created.
158
-
/// </summary>
159
-
/// <param name="value">The value that should be validated.</param>
160
-
/// <param name="className">The name of the class where the <paramref name="methodName"/> is defined.</param>
161
-
/// <param name="methodName">The name of he method where <paramref name="value"/> is used.</param>
162
-
/// <param name="propertyName">The name of the property.</param>
/// Use this method to check if a value is equal to its default value.
175
-
/// 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.
176
-
/// </summary>
177
-
/// <typeparam name="TValue">The type of the <paramref name="value"/>.</typeparam>
178
-
/// <param name="value">The value that should be validated.</param>
179
-
/// <param name="className">The name of the class where the <paramref name="methodName"/> is defined.</param>
180
-
/// <param name="methodName">The name of he method where <paramref name="value"/> is used.</param>
181
-
/// <param name="propertyName">The name of the property.</param>
/// Use this method to check if a value is not null and not an empty collection.
195
-
/// 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 would be created.
196
-
/// </summary>
197
-
/// <typeparam name="T">The type of the underlying entities that are stored within the requested collection.</typeparam>
198
-
/// <param name="value">The collection that should be validated.</param>
199
-
/// <param name="className">The name of the class where the <paramref name="methodName"/> is defined.</param>
200
-
/// <param name="methodName">The name of he method where <paramref name="value"/> is used.</param>
201
-
/// <param name="identifierPropertyName">The name of the entity's unique identifier property.</param>
/// Appends an exception to the error message collection and logs the full exception as an Error <see cref="LogEventLevel"/> level. A call to this method will set the Success property to false.
/// Use this method to check if a value is not null and not an empty collection.
9
+
/// 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.
10
+
/// </summary>
11
+
/// <typeparam name="T">The type of values that can be stored within the extended operation result.</typeparam>
12
+
/// <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.
38
+
/// 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.
39
+
/// </summary>
40
+
/// <typeparam name="T">The type of values that can be stored within the extended operation result.</typeparam>
41
+
/// <typeparam name="TValue">The type of the <paramref name="value"/>.</typeparam>
42
+
/// <param name="value">The value that should be validated.</param>
43
+
/// <param name="className">The name of the class where the <paramref name="methodName"/> is defined.</param>
44
+
/// <param name="methodName">The name of he method where <paramref name="value"/> is used.</param>
45
+
/// <param name="propertyName">The name of the property.</param>
/// Use this method to check if a value is a valid string.
59
+
/// 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.
60
+
/// </summary>
61
+
/// <typeparam name="T">The type of values that can be stored within the extended operation result.</typeparam>
62
+
/// <param name="value">The value that should be validated.</param>
63
+
/// <param name="className">The name of the class where the <paramref name="methodName"/> is defined.</param>
64
+
/// <param name="methodName">The name of he method where <paramref name="value"/> is used.</param>
65
+
/// <param name="propertyName">The name of the property.</param>
/// Use this method to check if a value is not null.
78
+
/// If you want to validate that an entity exists, use the "ValidateExist" extension method.
79
+
/// If you want to validate that the currently authenticated user is not null, use the "ValidateUser" extension method.
80
+
/// If <paramref name="value"/> is null, an error message should be appended and a log of the passed <paramref name="level"/> severity would be created.
81
+
/// </summary>
82
+
/// <typeparam name="T">The type of values that can be stored within the extended operation result.</typeparam>
83
+
/// <param name="value">The value that should be validated.</param>
84
+
/// <param name="className">The name of the class where the <paramref name="methodName"/> is defined.</param>
85
+
/// <param name="methodName">The name of he method where <paramref name="value"/> is used.</param>
86
+
/// <param name="propertyName">The name of the property.</param>
0 commit comments